var aId=1;//当前
		function clickT(obj,sId)
		{
			if(obj.className=="tagsButton")
			{
				obj.className="tagsCurrent";
				document.getElementById("item"+aId).className="tagsButton";
				document.getElementById("chag"+aId).style.display="none";
				document.getElementById("chag"+sId).style.display="block";
				aId=sId;
			}
		}
		
		function checkPost()
		{
		   //alert('dd');
		  if(document.getElementById("TextBox1").value=="")
		   {
		      alert("提交内容不能为空");
		     document.getElementById("TextBox1").focus();
		     return false;
		   }
		   else if(document.getElementById("TextBox2").value=="" || document.getElementById("TextBox2").value=="请输入您的EMAIL地址")
		   {
		      alert("Email不能为空");
		     document.getElementById("TextBox2").focus();
		     return false;
		   }
		   else return true;
		}
		
		function ResumeError() { return true; } 
    window.onerror = ResumeError; 