
//
// ============================
//  file name : popup.js
// ============================
//

/////////////////////////////////////////////////////////////////////////////////////////

// howtoOpen
function howtoOpen (url, windowName)
{	
	var width = 890;
	var height = 710;
	var option = 'menubar=no, toolbar=no, location=no, status=no, scrollbars=yes, resizable=yes';
	if (!windowName) windowName = "popup";
	var x = (screen.availWidth - width)/2;
	var y = (screen.availHeight - height)/4;
	var o = option+', width='+width+', height='+height+', left='+x+', top='+y;
	var blockMessage = "ウィンドウがお使いのブラウザでポップアップブロックされました。\nポップアップブロックを解除してください。";
	var win = window.open(url, windowName, o);
	if (win)
	{
		win.focus();
	} else {
		alert(blockMessage);
	}
}