function EnterKeydown() {

  if(window.event.keyCode==13) {
  	
  	//alert("EnterKeydown1");
  	
  	if(document.sendform.Keyword.value==""){
		alert("Please Input Keyword");
		return;
  	}		  	
  	
    WideIndex_List2(document.sendform.Keyword.value);
    
    return;
  }
}

function WideIndex_List2(str){//Layer page

	//alert("WideIndex_List2");

	if(document.sendform.Keyword.value=="")
	{
		alert("Please Input Keyword");
		document.sendform.Keyword.focus();
		return;
	}

		//alert("str:"+str);

		var f = document.sendform;
		//f.list_searchword.value=str;
		f.searchword.value=str;
		f.map_id.value="0000";
		f.action ="../product/kyungin_product.jsp?map_id=0000&searchword="+str;
		f.submit();
		return;
}


