﻿// JavaScript Document
function check()
{
if(document.myform.title.value==""){
    alert('请输入留言主题!');
	document.myform.title.focus();
	return false;
	}
if(document.myform.name.value==""){
    alert('请输入留言人!');
	document.myform.name.focus();
	return false;
	}
if(document.myform.tel.value==""){
    alert('请输入联系电话!');
	document.myform.tel.focus();
	return false;
	}
if(document.myform.email.value==""){
    alert('请输入E-Mail!!');
	document.myform.email.focus();
	return false;
	}
if(document.myform.content.value==""){
    alert('请输入留言内容!');
	document.myform.content.focus();
	return false;
	}		
return true;
	}
