/*
 *		入力情報チェック
 */
function form_check() {
with (document.getElementById("inquiry")) {

	/* お名前チェック */
	if( sender.value == "" ) {
		this.alert( "お名前をご入力下さい" ) ;
		sender.focus() ;
		return( false ) ;
	}

	/* メールアドレスチェック */
	if( address.value == "" ) {
		this.alert( "メールアドレスをご入力下さい" ) ;
		address.focus() ;
		return( false ) ;
	}
	if( !checkEMailAddressFormatValidity(address.value) ){
		alertIllegalEmailAddressFormat(address.value) ;
		address.focus() ;
		return( false ) ;
    }

	/* お問い合わせ内容チェック */
	if( body.value==="" ) {
		this.alert( "お問い合わせ内容をご入力下さい" ) ;
		body.focus() ;
		return( false ) ;
	}

	return( true ) ;
}}

