
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function fullscreen( pageUrl, winName ) {
  window.open( pageUrl, winName, "fullscreen=yes" );
}

function centerWindow(pageUrl, winName, w, h, scroll, resizable) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var wins = scroll ? 'yes' : 'no';
	var winr = resizable ? ',resizable' : '';
	winProps = 'height='+ h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+wins+winr;
	win = window.open(pageUrl, winName, winProps);
	if (parseInt(navigator.appVersion) >= 4) {
		 win.window.focus();
	}
}

function MM_displayStatusMsg(msgStr) { //v1.0
	status=msgStr;
	document.MM_returnValue = true;
}
