
// クーポン印刷用ウィンドウオープン
function cpnPrint(url) {
	window.open ( url, "", "width=450, height=400, scrollbars=1 , resizable=1 , status=1" );
}


//BBS書き込みボックス開閉
function bbsBox(idname) {
	box = document.getElementById(idname).style;
	
	if (box.display == "none" || box.display == "") {
		box.display = "block";
		str = "▲閉じる";
	
	} else {
		box.display = "none";
		str = "▼新規書込み";
	}
	document.getElementById("boxmsg").innerHTML = str;
}


//BBS書込みチェック
function bbsCheck() {

	writer = document.bbsform.writer.value;
	title = document.bbsform.title.value;
	message = document.bbsform.message.value;
	
	if (writer == "") {
		alert ("お名前を入力して下さい");
		return false;
	
	} else if (title == "") {
		alert ("タイトルを入力して下さい");
		return false;
	
	} else if (message == "") {
		alert ("メッセージを入力して下さい");
		return false;
	}
	
	return true;
}
