window.onload = function () {
  if (!document.getElementsByTagName) return false;
		var searchBox;
		searchBox = document.getElementById("keyword");

			searchBox.onclick = function() {
				searchBox.value = "";
				searchBox.className = "active";
    		    return false;
			}
			searchBox.onblur = function() {
				if(searchBox.value == "") {
					searchBox.value = "Enter Keyword";
					searchBox.className = "nonActive";
    		    	return false;
    		    }
			}

}


 function HandleChange() {
       parent.document.location.href="manufacturers.asp?manu=" + document.forms["manuFormSide"].manu.value;
       //alert(document.forms["manuForm"].manu.value)
}