// JavaScript Document var mainwindow = "mainWin"; function extra() { self.name = 'mainWin'; prevWin = open("about:blank", "prevWin", "status,width=1000,height=900,scrollbars=auto,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes"); if (prevWin && !prevWin.closed) prevWin.focus(); return true; } function openMain(page) { if(window.opener==null || window.opener.closed) { self.name="winMain" self.location=page } else { window.opener.focus(); } } function openFlash(page,w,h) { self.name = 'winMain'; //alert("openflash"); prevWin = open(page, "prevWin", "width=" + w + ",height=" + h + ",scrollbars=auto,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes"); if (prevWin && !prevWin.closed) prevWin.focus(); // prevWin = open("childpage.asp", "prevWin", "status,width=400,height=200,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes"); } function openFullFlash(page) { self.name = 'winMain'; //alert("openflash"); prevWin = open(page, "prevWin", "fullscreen=yes,scrollbars=auto,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes"); if (prevWin && !prevWin.closed) prevWin.focus(); // prevWin = open("childpage.asp", "prevWin", "status,width=400,height=200,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes"); }