<!--
//==================================
//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 = "Done";
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='"+msg+"'",2);
//-->

