//*********************************************************************************************
//
// 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="";
	if(window.document.formmail.elements[4].value==""){
		error_string+="Please input your First name\n";
	}
	if(window.document.formmail.elements[5].value==""){
		error_string+="Please input your Last name\n";
	}
	if(window.document.formmail.elements[11].value==""){
		error_string+="Please input your Address\n";
	}
	if(window.document.formmail.elements[13].value==""){
		error_string+="Please input your Phone Number\n";
	}
	if(window.document.formmail.elements[15].value==""){
		error_string+="Please input your E-mail address\n";
	}
	if(window.document.formmail.elements[17].value==""){
		error_string+="Please input Inquiry Contents\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;
	}
}
