//*********************************************************************************************
//
// Coded by Artis Co.,Ltd.
// http://www.artisj.com
// If you want to use this code, feel free to do so, however; please leave this message intact.
// Copyright(C) 2003 Artis Co.,Ltd. All rights reserved.
//
//*********************************************************************************************

var W_Chk=0;
function FormChk(){
var error_string="";

//"Contact Us製品のラジオボタン数 -1" の値を入れてください。

if(window.document.formmail.elements[0].value==""){
error_string+="Please input your Name.\n";
}
if(window.document.formmail.elements[1].value==""){
error_string+="Please input Company name.\n";
}
if(window.document.formmail.elements[2].value==""){
error_string+="Please input Department.\n";
}
if(window.document.formmail.elements[4].value==""){
error_string+="Please input Telephone.\n";
}
if(window.document.formmail.elements[5].value==""){
error_string+="Please input E-mail.\n";
}
if(window.document.formmail.elements[16].value==""){
error_string+="Please input Nature of Inquiry.\n";
}
if(error_string==""){
	if(W_Chk=="1"){
		alert("It is transmitting ending.");
		return false;
	}
	if(W_Chk=="0"){
		W_Chk=1;
		return true;
	}
} else {
	error_string="Please check the inputted contents.\n\n"+error_string;
	alert(error_string);
	W_Chk=0;
	return false;
}
}