function BrowserTests() {
	parseBrowser();
	createWin();
}

function PopUp(Page, h, w) {
	if (h==undefined || h=="") {
		h="420"
	}
	if (w==undefined || w=="") {
		w="400"
	}
	OpenWin = this.open(Page, "CtrlWindow", "width=" + w + ",height=" + h + ",toolbar=no,status=yes,menubar=no,location=no,scrollbars=yes,resizable=yes");
}
function parseBrowser(){}
function createWin () {
	WinTest = window.open ('oiScript/popUpTest.html#test', 'win', 'width=150,height=50');
	setTimeout ('detectWin ()', 700);
	window.focus ();
}
function detectWin () {
	var bBlock = false;
	if ((WinTest == null) || (typeof (WinTest) == "undefined") || (typeof (WinTest.location.hash) != "string")) 
		{ 
		// window blocked
		bBlock = true 
		alert("For full system functionality, you must allow pop-ups from this site. Please modify your pop-up blocker settings. For more information, please see our System Requirements page.")
	} else {
		// window was not blocked
		WinTest.close ();
	}
}