// Copyright © 1999-2006 Bizay.com //**************************************************** // Developed by: Carlos Martinho - Bizay.com // Version: 2.0 //**************************************************** //================================== //reloads the window if Nav4 resized function MM_reloadPage(init) { 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); //=================== // copyright message var msg = "Copyright © 1999-2010 Bizay.com"; if(document.layers) window.captureEvents(Event.MOUSEDOWN); function no_click(e){ if (navigator.appName == 'Netscape' && ( e.which == 2 || e.which == 3)) { (msg);return false; } if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { (msg);return false; } } window.onmousedown=no_click; document.onmousedown=no_click; // Using this without the "alert(msg)", no dialog box will be displayed document.oncontextmenu=no_click; document.oncontextmenu=new Function("return false") //================ // status message setInterval("window.status='Copyright © 1999-2010 Bizay.com'",50); //================ // Open Window function launchWindow(url, features) { window.open(url, "_blank", features); }