function check_form(){
	if (window.document.guest1.name.value=="") {
		alert("请输入 基本信息-> 姓名！");
		window.document.guest1.name.focus();
        return false;
	}
	if (window.document.guest1.tel.value=="") {
		alert("请输入 基本信息-> 联系电话！");
		window.document.guest1.tel.focus();
        return false;
	}
	if (window.document.guest1.info.value=="") {
		alert("请输入 基本信息-> 留言内容！");
		window.document.guest1.info.focus();
        return false;
	}
}

