function accom_check() {
	
     if(message.join_title.value =="") {
		alert("Please input the country");
		message.join_title.focus();
		return;
	} 

	 if(message.join_company.value =="") {
		alert("Please input the company");
		message.join_company.focus();
		return;
	}

	 if(message.join_tel.value =="") {
		alert("Please input the tel");
		message.join_tel.focus();
		return;
	}
	 
	if(message.join_mail.value =="") {
		alert("Please input the E-mail");
		message.join_mail.focus();
		return;
	}
	
	if(message.join_name.value =="") {
		alert("Please input the contact");
		message.join_name.focus();
		return;
	}
	
	if(message.join_main.value =="") {
		alert("Please input the content");
		message.join_main.focus();
		return;
	}
	

	else {	
		
	}	
	
	message.submit();
}