function newUrl()
{
var strID = document.all.item("q").value;
if (strID == "")
	{
		window.alert("Please type the URL of the site you wish to go to.");
		SetFocus();
	}else{
		if (strID.indexOf("://") < 1)
		{
			strID = "http://" + strID;
		}
		self.location = strID;
	}
}
function SetFocus(objMT)
{
	document.all.item("q").focus();
}
