//------------------------------------------------------------------------------------
//linkaddr.js
//リンク管理Script
//------------------------------------------------------------------------------------

// 別ウインドを開く
function open_newWin(url){
	window.open(url, '', 'left=0,top=0,WIDTH=1012,HEIGHT=710,resizable=yes, scrollbars=no');
}

// 別小さいウインドを開く
function open_newSubWin(url){
	window.open(url, '', 'left=0,top=0,WIDTH=1012,HEIGHT=480,resizable=yes, scrollbars=yes');
}



//トップページ
function GoTop() {
	parent.frames[1].location.href = "top.html";
}

//概要
function GoGaiyo() {
	parent.frames[1].location.href = "gaiyo.html";
}

//挨拶
function GoAisatsu() {
	parent.frames[1].location.href = "aisatsu.html";
}

//例会予定表
function GoMeeting() {
 window.open("./member/pdf/reikaiyoteihyou.pdf","_blank");
}

//リンク
function GoLink() {
	parent.frames[1].location.href = "link.html";
}

//I M
function GoIM() {
	parent.frames[1].location.href = "IM.html";
}

//例会場へのアクセス
function GoMap() {
	parent.frames[1].location.href = "map.html";
}

//地図
function GoMap2() {
	open_newSubWin("map.html");
}

//奉仕活動レポート
function GoHoushi() {
	parent.frames[1].location.href = "houshi.html";
}

//水戸南ニュース
function GoNews() {
	parent.frames[1].location.href = "cgi-bin/news/news.cgi";
}

//会員のページ　（別ウインドを開く）
function GoKaiin_new() {
	open_newWin("cgi-bin/pass.cgi");
}

//会員のページ
function GoKaiin() {
	parent.frames[1].location.href = "cgi-bin/pass.cgi";
}
/*
//会員のページ　（サイトパス）
function GoKaiin() {
	location.href = "http://www.mito-m-rc.com/cgi-bin/pass.cgi"; 
}
*/

//年度テーマ
function GoTheme() {
	parent.frames[1].location.href = "theme.html";
}

//クラブバナー
function GoBanner() {
	parent.frames[1].location.href = "banner.html";
}

//プライバシーポリシー
function GoPrivacy() {
	parent.frames[1].location.href = "privacy.html";
}

//会員の伝言板
function GoKaiinBBS() {
	location.href = "mitominami.cgi";
}
/*
//会員の伝言板　（サイトパス）
function GoKaiinBBS() {
	location.href = "http://www.mito-m-rc.com/cgi-bin/mitominami.cgi";
}
*/

//お問い合わせメールアドレス
function MailTo() {
	location.href = "mailto:kanji@mito-m-rc.com";
}