<!--
function checkMe(){
if (document.Search.key.value=="")
{
alert("请输入您的搜索关键字。");
document.Search.key.focus();
return false;
}
}
function checkMe1(){
if (document.smlogin.id.value=="")
{
alert("请输入您的邮箱名");
document.smlogin.id.focus();
return false;
}
if (document.smlogin.password.value=="")
{
alert("请输入您的邮箱密码");
document.smlogin.password.focus();
return false;
}
}
	function showTable(sel)
	{
		if(sel.value == 0)
		{
			document.getElementById("distinct01").style.display="block";
			document.getElementById("distinct02").style.display="none";
			document.getElementById("distinct03").style.display="none";
		}
		if(sel.value == 1)
		{
			document.getElementById("distinct01").style.display="none";
			document.getElementById("distinct02").style.display="block";
			document.getElementById("distinct03").style.display="none";
		}
		if(sel.value == 2)
		{
			document.getElementById("distinct01").style.display="none";
			document.getElementById("distinct02").style.display="none";
			document.getElementById("distinct03").style.display="block";
		}
	}
//-->
