function mychk()
{
	if(document.gbooks.uname.value=="")
	{
		alert("提示：\n\n请输入您的昵称");
		document.gbooks.uname.focus();
		return false;
	}
		if(document.gbooks.utitle.value=="")
	{
		alert("提示：\n\n请输入留言主题");
		document.gbooks.utitle.focus();
		return false;
	}
	if(document.gbooks.ucontent.value=="")
	{
		alert("提示：\n\n请输入您的留言");
		document.gbooks.ucontent.focus();
		return false;
	}

}


