// JavaScript Document

function check(){
//テキストボックスのチェックの準備-------------------
contact=document.form1.contact.value;

//アラートウィンドウの表示---------------------------
	if(contact==""){
    alert("必須項目＜お問合せ連絡先＞が入力されていません");
    document.form1.contact.focus();
    return false;
    }
}