<!--
//入力チェック
function check_form(){
	var name     = document.form.name.value;
	var subject  = document.form.subject.value;
	var contents = document.form.mail_contents.value;
	if( name == null || name == ""){
		window.alert('名前が入力されていません');
		return false;
	}else if( subject == null || subject == ""){
		window.alert('件名が入力されていません');
		return false;
	}else if( contents == null || contents == ""){
		window.alert('本文が入力されていません');
		return false;
	}else{
		if(confirm("メールを送信します。\nよろしいですか？")){
			document.form.submit();
		}
	}
}

//ブログ個別選択
function select_writer(obj) {
	with(obj){
		location.href = "http://www.enginez.jp/hp/blogs/view/?writer="+options[selectedIndex].value;
	}
}

//-->