
// 下拉菜单
function GoProd(sth)
{
 var url = sth.options[sth.selectedIndex].value;
 window.open(url);
 sth.selectedIndex=0;
}

//页面刷新
function reload()	{
	// reload page
	location.reload()
	// end
	}
	
//搜索
function searchs(a)
{
document.all["loading"+a].style.display="block";
//document.all["keyword"+a].disabled=true;
document.all["submit_"+a].disabled=true;
document.all["submit_"+a].className="search_off";
document.all["form"+a].submit(); // 继续执行
}

function Check()
{var Name=document.myform.username_maijx.value;
window.open("checkuser.asp?username="+Name,"","width=5,height=5");
}