/*LINK*/
//新規ウィンドウの場合は、window.open ("URL");　に変更する

function navi01(){
parent.top.location = "index.php";//ホーム
}
function navi02(){
parent.top.location = "note.php";//せらちゃんノート
}
function navi03(){
parent.top.location = "books.php";//ごほんですよー
}
function navi04(){
parent.top.location = "seisaku.php";//政策室
}
function navi05(){
parent.top.location = "h1k.php";//半径1キロ
}
function navi06(){
parent.top.location = "link.php";//おすすめリンク
}
function navi07(){
parent.top.location = "javascript:WinOpen('mail.php','_blank','width=600,height=350')";//ご意見・ご感想はこちら
}
function navi08(){
parent.top.location = "profile.php";//自己紹介
}


/*sub window open*/

function WinOpen(theURL,winName,features) {
  window.open(theURL,winName,features);
}

/*drop down link*/
function LinkSelect(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href = adrs;
}