//*********************************************************************************************
//
// 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[0].value==""){
error_string+="お名前 を入力して下さい\n";
}
if(window.document.formmail.elements[3].value==""){
error_string+="メールアドレス を入力して下さい\n";
}
if(window.document.formmail.elements[4].value==""){
error_string+="お問い合わせ内容 を入力して下さい\n";
}
if(error_string==""){
if(W_Chk=="1"){
alert("送信済みです");
return false;
}
if(W_Chk=="0"){
W_Chk=1;
return true;
}
}
else{
error_string="未入力の項目があります。\n\n"+error_string;
alert(error_string);
W_Chk=0;
return false;
}
}