function showtable(tbflag,tbnum,curtable,tdyes,tdno)
{
	for(i=1; i<=tbnum;i++)
	{
		if(i==curtable)
		{
			document.getElementById("div_"+tbflag+"_"+i).style.display='';
		}
		else
		{
			document.getElementById("div_"+tbflag+"_"+i).style.display='none';
		}
	}
}

function  checkform()
{
	if(document.form1.key.value=="")
	{
		alert("ÇëÊäÈëËÑË÷¹Ø¼ü×Ö");
		document.form1.key.focus();
		return false;
	}
	else
	{
		return true;	
	}
}
