function check(){
	if(!trim(form.Name.value)){alert('Please type the Name');form.Name.focus();return false;}
	if(!trim(form.Company.value)){alert('Please type the Company');form.Company.focus();return false;}
	if(!trim(form.Tel.value)){alert('Please type the Tel');form.Tel.focus();return false;}
	if(!trim(form.Email.value)){alert('Please type the E-mail address');form.Email.focus();return false;}
	if(form.Email.value.indexOf("@")=="-1" || form.Email.value.indexOf(".")=="-1"){alert("Please type the E-mail address");form.Email.select();return false;}
	if(!trim(form.Content.value)){alert('Please type the Commemnts');form.Content.focus();return false;}
        form.btnSubmit.disabled = true;
        form.submit();
}
function trim(instr){
        return instr.replace(/^[\s]*/gi,'').replace(/[\s]*$/gi,'');
}
