function goSearch(e)
		{
		if(window.event) // IE
		  {key = window.event.keyCode;}
  	    else if(e.which) // Netscape/Firefox/Opera
		  {key = e.which;}
        if (key == 13)
		   {
			  window.location.replace("http://shop.jgoodin.com/shop/cg.php?o=oCg2&search=" + document.Form.search.value);
		   }
		}
		
	function Clean_Search()
	{
	   if (document.Form.search.value=='Keyword or item #')
	      {
		    document.Form.search.value='';
		  }
	}	
	
	function Validate_Empty_Search_Field()
	{
	   if (document.Form.search.value=='')
	      {
		    document.Form.search.value='Keyword or item #';
		  }
	
	}