// JavaScript Document
function jumpLine(){
document.form1.submit();
}

function Clear(x)
{	
 document.getElementById(x).value="";
}

  function CheckForm(){
   var User=document.getElementById("UserName").value;
	if(User==""){
	alert("您的姓名不能为空！");
	return false;
	}
	var title=document.getElementById("Title").value;
	if(title==""){
	alert("留言标题不能为空！");
	return false;
	}
	var CheckCode=document.getElementById("CheckCode").value;
	if(CheckCode==""){
	alert("验证码不能为空！");
	return false;
	}
	}
 
