//-------------------------------------------------------------------->
//- file   : window.js
//- desc   : browser window control
//- base   : Macromedia Dreamweaver MX 2004
//-------------------------------------------------------------------->

//external Links 標準別ウィンドウ
//呼び出し方法【<a rel="external"></a>】
function externalLinks() {
	if (!document.getElementsByTagName) return;
		var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}
window.onload=externalLinks;


//サイズ指定アリ ロケーション＋メニューバー＋ステータスバー＋スクロールバー＋リサイズ
function openWindow(uri,nm) {
  Win=window.open(uri,nm,"toolbar=yes,location=yes,menubar=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=640,height=480");
  Win.focus()
}

//サイズ指定アリ 属性をHTML側を指定
function openBrWindow(theURL,winName,features) {
  var win=window.open(theURL,winName,features);
  win.focus();
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
