<!--
image1 = new Image();
image1.src = "images/logo.png";
image2 = new Image();
image2.src = "images/pr.gif";
image3 = new Image();
image3.src = "images/mob.gif";
image4 = new Image();
image4.src = "images/offsite.gif";

function RemoveDot() 
{ 
for (a in document.links) document.links[a].onfocus = document.links[a].blur; 
} 
if (document.all) 
{ 
document.onmousedown = RemoveDot; 
} 
file:

// Netscape fix resize bug Ns4
function WM_netscapeCssFix() {
  if (document.WM.WM_netscapeCssFix.initWindowWidth != window.innerWidth ||
        document.WM.WM_netscapeCssFix.initWindowHeight != window.innerHeight) {
     document.location = document.location;
    }
}

function WM_netscapeCssFixCheckIn() {
  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
    if (typeof document.WM == 'undefined'){
       document.WM = new Object;
       }
    if (typeof document.WM.WM_scaleFont == 'undefined') {
       document.WM.WM_netscapeCssFix = new Object;
       document.WM.WM_netscapeCssFix.initWindowWidth = window.innerWidth;
       document.WM.WM_netscapeCssFix.initWindowHeight = window.innerHeight;
       }
    window.onresize = WM_netscapeCssFix;
  }
}

WM_netscapeCssFixCheckIn();

// catch all errors...
function stopError() {return true;}
window.onerror=stopError;
//-->