// =================================================== // BROWSER IDENTIFICATION BY DOCUMENT OBJECT MODEL // =================================================== var domStr = ''; var ieDOM = (document.all) ? 1 : 0; var nsDOM = (navigator.appName=="Netscape") ? 1 : 0; var ns6DOM = 0; if (!document.all && document.getElementById) { ns6DOM = 1; nsDOM = 0; } // =================================================== // POP-UP WINDOWS // =================================================== var newWindow; function popupWindow( theURL ) { if ( newWindow && !newWindow.closed) { newWindow.close( ); } if (ieDOM) { newWindow = window.open( theURL, "", "status,titlebar,scrollbars,resizable,dependent,height=680,width=810"); } else { if (nsDOM) { newWindow = window.open( theURL, "", "status,titlebar,scrollbars,resizable,dependent,height=662,width=788"); } else{ if (ns6DOM) { newWindow = window.open( theURL, "", "status,titlebar,scrollbars,resizable,dependent,height=665,width=788"); } else{ newWindow = window.open( theURL, "", "status,titlebar,scrollbars,resizable,dependent,height=680,width=810"); } } } if (newWindow.opener == null) { newWindow.opener = self; } return false; }