/*function initWindow() {
	showWindow();
	alert ("テスト");
}*/

/*if (isMac && os != "MacOSX") {
		alert ("MacOSX以外です");
}*/

function initWindow() {
	if (isMacIE || ( isMac && os != "MacOSX")) {
		//alert ("MacOSX以外です");
		popUpWindow();
	} else {
		//alert ("テスト");
		showWindow();
	}
}

function showWindow() {
	win = new Window("win01",{
		className : "alphacube",
		title : "Information",
		url : "pwc_window/text.html",
		top : 10,
		left : 20,
		//width : 165,
		width : 362,
		//height : 307,
		height : 231,
		destroyOnClose : true
	});	
	win.show();
	win.toFront(); 
}

function popUpWindow() {
	theURL   = "pwc_window/text2.html"; 
	winName = "win01";
	features  = "width=360,height=272,scrollbars=no,resizable=yes";
	window.open(theURL,winName,features);
}

//Event.observe(window, "load", initWindow);
