

<!-- Begin
var isNav4, isIE4;
if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
isNav4 = (navigator.appName == "Netscape") ? 1 : 0;
isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}
function resize() {
if (isNav4) {
window.innerWidth = document.layers[0].document.images[0].width;
window.innerHeight = document.layers[0].document.images[0].height;
}
if (isIE4) {
window.resizeTo(700, 500);
width = 700 //- (document.body.clientWidth -  document.images[0].width);
height = 500 //- (document.body.clientHeight -  document.images[0].height);
window.resizeTo(width, height);
   }
}
//  End -->


