{function newUrl()
{
var strID = document.all.item("q").value;
if (strID == "")
{
window.alert("Please type the word or words you wish to search for in the Search box.");
SetFocus();
}else{
if (strID.indexOf("://") < 1)
{
strID = "http://" + strID;
}
self.location = strID;
}
}