/*  blogメニューリスト　onクリックでリンクへジャンプ */
function openblig(url){
	location.href = url;
}
/* BBS メニューリンクボタン onクリックで */
function openblig_b(url){
	newWin = window.open(url,"BBS");
}

/* アクセスマップオープン */
function newWin(URL)
{
newWin = window.open(URL,"MAP","width=450,height=400");
}
/* indexページ　メイン画像　ランダム表示 */
//imgパス
var imgPash = "common/index/";

//メイン処理
function OnMainImg(){
	var imgBox = "main_photo1.jpg,main_photo2.jpg";
	var imgAlt = "ミズトカミ";
	imgBox = imgBox.split(",");
	imgAlt = imgAlt.split(",");
	imgCnt = imgBox.length;
	retCnt = Math.floor(Math.random()*imgCnt);
    var imgtag ="<img id='MAIN_IMG' name='MAIN_IMG' src='"+ imgPash+imgBox[retCnt] +"' title='" + imgAlt[retCnt] +"' alt='" + imgAlt[retCnt] +"' width='529' height='299'>";
    document.write(imgtag);
}