//***********************************************************
// 別Windowリンク
//***********************************************************
function NewWindow(w_Page,w_URL,w_Name) {
	if (w_Page == "HOME"){
		document.write("<span class='shikaku'>■</span>");
	}else if(w_Page == "GENRE"){
		document.write("<span class='shikaku'>■</span><span class='contents'>URL：</span>");
	}
	document.write("<a href=\"javascript:NewWindowJump('" + w_URL + "')\">" + w_Name + "</a>");
}

function NewWindow1(w_Page,w_URL,w_Name) {
	
	document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"javascript:NewWindowJump('" + w_URL + "')\">" + w_Name + "</a>");
}

function NewWindowJump(w_URL) {
	window.open(w_URL,"new_window");
}

function NewWindowdot(w_URL,w_Name) {
	
	document.write("・<a href=\"javascript:NewWindowJump('" + w_URL + "')\">" + w_Name + "</a>");
}


//***********************************************************
// 別Windowバナー用
//***********************************************************
function BannerNewWindow(w_URL,w_FileNm,w_Width,w_Height){
	document.write("<a href=\"javascript:NewWindowJump('" + w_URL + "')\">");
	document.write("<img src='" + w_FileNm + "' alt='' width='" + w_Width + "' height='" + w_Height + "' style='border:0px;' /></a>");

}

//***********************************************************
// 別Window写真コンテスト
//***********************************************************
function PhotoNewWindow(w_URL,w_FileNm,w_Width,w_Height,w_Size){
	document.write("<a href=\"javascript:PhotoContest('" + w_URL + "','" + w_Size + "')\">");
	document.write("<img src='" + w_FileNm + "' alt='' width='" + w_Width + "' height='" + w_Height + "' style='border:0px;' /></a>");

}

function PhotoContest(w_URL,w_Size) {
	window.open(w_URL,"new_window",w_Size + ",location=no");
}

//***********************************************************
// くちコミ情報入力チェック
//***********************************************************
function Mcheck() {
	//入力漏れチェック
	if (document.form1.content.value=="") {
		window.alert("情報内容を入力してください");
		return false
	}

	if (document.form1.nickname.value=="") {
		window.alert("ニックネームを入力してください");
		return false
	}

	//誹謗中傷チェック
	var w_chk;

	w_chk = document.form1.recommendation.value + document.form1.title.value + document.form1.content.value ;

	if ((w_chk.indexOf("悪") != -1) || (w_chk.indexOf("まずい") != -1) || (w_chk.indexOf("マズイ") != -1) || (w_chk.indexOf("最低") != -1) || (w_chk.indexOf("汚") != -1) || (w_chk.indexOf("臭い") != -1) || (w_chk.indexOf("卑") != -1) || (w_chk.indexOf("猥") != -1) || (w_chk.indexOf("みすぼらしい") != -1)) {
		window.alert("誹謗・中傷はおやめ下さい。");
		return false
	}

	return true;
}




