function clearme(formItem, keyword)
{ 
	if (formItem.value == keyword)
	    formItem.value = ''; 
}

function checkinput()
{	
	if(document.forms[0].searchtxt.value != "Site Search...")
		document.forms[0].submit()
	else return false;
}

function gotopage()
{
    var searchsel = document.getElementById("searchsel");    
    if(searchsel != null)
        document.location.href = searchsel.options[searchsel.selectedIndex].value;
}