function searchSite_check()
{
    var searchKey = document.getElementById(searchKey);
    alert(searchKey);
    searchKey.value="";
}

function entsub(myform)
{
  	if (window.event && window.event.keyCode == 13)
  	{
   		myform.submit();
   	}
  	else
  	{
    	return true;
    }
}
 
function inputCheck()
{
 	var searchbox = document.getElementById("searchbutton");
 	if (searchbox.value == "Keyword or Product #")
 	{
   		searchbox.value = "";
 	}
}
 
function inputsearchwithinCheck()
{
 	var searchwithinbox = document.getElementById("searchwithinbutton");
 	if (searchwithinbox.value == "Search Within Results")
 	{
   		searchwithinbox.value = "";
 	}
} 

function searchboxFocus()
{
	var searchbox = document.getElementById("searchbutton");
 	if (searchbox.value == "Keyword or Product #")
 	{
   		searchbox.value = "";
 	}
}
