<!-- //

browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);

if (browser_name == "Netscape" && browser_version >= 3.0) { browser_ok = 'true'; }
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0) { browser_ok = 'true'; }
else { browser_ok = 'false'; }

function over(img) {
   if (browser_ok == 'true') {
       document.images[img].src = "i/door-open.gif";
   }
}

function out(img) {
   if (browser_ok == 'true') {
       document.images[img].src = "i/door.gif";
   }
}

if (browser_ok == 'true')
{
a1=new Image; a1.src="i/door-open.gif";
}

//-->
