/*

information{
	ファイル名 : "js/corporate/ir/common.js";
	概要 : このJSファイルは[ir]以下で使用される変数、関数が定義されています。。;
	サイト名 : DOCOMO Net.;
	URL : http://www.nttdocomo.co.jp/;
	コピーライト : (c) NTT DOCOMO, INC. All Rights Reserved.;
}

 */


//汎用ポップアップ展開「window_open_noBar」（バー類なし、スクロールなし、リサイズ可）
function window_open_noBar(ourl,ww,wh,wname){
	x = (screen.width- ww) / 2;
	if(screen.height>768){
		y = (screen.height- wh) / 2;
	} else {
		y = 0;
	}
	new_window = window.open(ourl,wname,"location=no,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes,left="+x+",top="+y+",width="+ww+",height="+wh);
	new_window.focus();
}

//汎用ポップアップ展開「window_open_normal」（バー類あり、スクロールなし、リサイズ可）
function window_open_normal(ourl,ww,wh,wname){
	x = (screen.width- ww) / 2;
	if(screen.height>768){
		y = (screen.height- wh) / 2;
	} else {
		y = 0;
	}
	new_window = window.open(ourl,wname,"location=yes,status=yes,toolbar=yes,menubar=yes,scrollbars=no,resizable=yes,left="+x+",top="+y+",width="+ww+",height="+wh);
	new_window.focus();
}

