// JavaScript Document
function erase()
{
	document.form1.Industry.value=""
}
function headsearch()
{
	if (document.form1.Industry.value=="" || document.form1.Industry.value=="Enter your keyword" || document.form1.Industry.value=="Enter your datacard name" ) 
	{
		alert("Please enter your keyword.")
		document.form1.Industry.focus()
		return false;
	}
	document.form1.submit();
}
function GetIndustry()
{
  var CusEdit = new Array();
  var CulcTmp = new Array();

 lcModal = "Product/IndHlpModal.asp"
 CulcTmp=window.showModalDialog(lcModal,"","dialogwidth:290px;dialogheight:300px;status:0;scroll:1;help:0;")

	if(CulcTmp!=null)
	{
		for(var i=0; i<CulcTmp.length; i++)
		{
			CusEdit[i] = CulcTmp[i];
		}
		document.form1.IndustryCode.value = CusEdit[0]
		document.form1.Industry.value = CusEdit[1]
		
	}	
}
