function popWindow( fileName, iWidth, iHeight ) {
		
	this.name = "MAINPAGE";
	popup = window.open(fileName, 'popWin', "status=no,width=" + iWidth + ",height=" + iHeight + ",left='0',top='0',resizable=yes,toolbar=no,scrollbars=yes" );

	if (navigator.appName == "Netscape") { 
   		popup.focus(); 
	} 

}