// JavaScript Document
function findeye()
{
	var type=document.form1.mertype.value;
	var kind=document.form1.merkind.value;
	url="tra.asp?type="+type+"&kind="+kind+"&loca=99";
	window.open(url, "_self");
}
function findShop(t,k,l)
{
	var type=t;
	var kind=k;
	var loca=l;
	url="tra.asp?type="+type+"&kind="+kind+"&loca="+loca;	
	window.open(url, "_self");
	return(true);
}
function findLoca(t,kind)
{
	var type=t;
	var loca=document.form2.location.value;
	url="tra.asp?type="+type+"&kind="+kind+"&loca="+loca;
	window.open(url, "_self");
	return(true);
}
function check()
{
	if(document.form3.Page.value=="")
	{
		alert("ÇëÊäÈëÒ³Âë");
		return (false);
	}
	else
	{
		document.form3.submit();
		return (true);
	}
	return (true);
}


// JavaScript Document