function Open(page) {
	OpenWin = this.open(page, "MainWindow", "fullscreen=0,type=fullWindow,scrollbars=no,directories=no,status=yes,menubar=1,resizable=1");
}
function changeSize(){
	//window.resizeTo(window.screen.availWidth, window.screen.availHeight);
	var myWidth = window.screen.availWidth;
	var myHeight = window.screen.availHeight;
	window.resizeTo(myWidth, myHeight);
	this.moveTo((window.screen.availWidth/2) - (myWidth/2), (window.screen.availHeight/2) - (myHeight/2) );
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}