function checksignup() {

	if ( document.form.name.value == '' ) {
		window.alert('请输入名称!!');
		document.form.name.focus();
	}
	else if ( document.form.tel.value == '' ) {
		window.alert('请留下您的号码方便联系您!!');
		document.form.tel.focus();
	}
	else if ( document.form.mail.value == '' ) {
		window.alert('请输入您的邮箱!!');
		document.form.mail.focus();
		}
	else if ( document.form.title.value == '' ) {
		window.alert('请输入留言标题!!');
		document.form.title.focus();
		}
	else if ( document.form.contents.value == '' ) {
		window.alert('请输入留言内容!!');
		document.form.contents.focus();
		}
    else {
		return true;
	}
	return false;
}
