function loadPage(list)
{
  location.href=list.options[list.selectedIndex].value
}

function GoogleSearch(strKeyword)
{
    document.forms[0].elements['q'].value = strKeyword;
    document.forms[0].submit();
}
