function freequote(theform)
{
	if(theform.name.value.length<=0){
		alert("Please enter your name!");
		return false;
	}
	if(theform.comp_name.value.length<=0){
		alert("Please enter your compay name!");
		return false;
	}
	if(theform.email.value.length<=0){
		alert("Please enter your E-mail address!");
		return false;
	}
	if(theform.phone_num.value.length<=0){
		alert("Please enter your phone number!");
		return false;
	}
	if(theform.comp_name.value.length<=0){
		alert("Please enter your compay name!");
		return false;
	}
	if(theform.source_lang.value.length<=0){
		alert("Please enter the source language(s)!");
		return false;
	}
	if(theform.target_lang.value.length<=0){
		alert("Please enter the target language(s)!");
		return false;
	}

	theform.comments.value = "公司名称："+ theform.comp_name.value+"\n"+"电话号码："+theform.phone_num.value+"\n"+"源语言："+theform.source_lang.value+"\n"+"目标语言："+theform.target_lang.value+"\n"+"备注："+theform.comments1.value+"\n";

}