<!--
var bName = navigator.appName;
var bVersion = navigator.appVersion
if (navigator.appName.indexOf("Netscape") != - 1 && bVersion.indexOf("5.") < 0)
{
	var nc = true;
}

  contacton = new Image();
  contacton.src = "images/contact-on.gif";
  contactoff = new Image();
  contactoff.src = "images/contact-off.gif";

  locationon = new Image();
  locationon.src = "images/location-on.gif";
  locationoff = new Image();
  locationoff.src = "images/location-off.gif";

  featureson = new Image();
  featureson.src = "images/features-on.gif";
  featuresoff = new Image();
  featuresoff.src = "images/features-off.gif";

  saleon = new Image();
  saleon.src = "images/sale-on.gif";
  saleoff = new Image();
  saleoff.src = "images/sale-off.gif";

function on(imagevar) {
   if (document.images) {
 	if (nc) 
		{
		document [imagevar].src = eval(imagevar + "on.src");
		  }	
	else
		{
	    document.images[imagevar].src = eval(imagevar + "on.src");
		}
	}
 }
function off(imagevar) {
   if (document.images) {
 	if (nc) 
		{
		document [imagevar].src = eval(imagevar + "off.src");
		  }	
	else
		{
	    document.images[imagevar].src = eval(imagevar + "off.src");
		}
	}
 }
 function popWindow(url)
	{
	window.open(url, "newwindow", "scrollbars=yes,setResizable=yes,toolbar=yes,width=640,height=450,screenx=10,screeny=10");
	}
function popWindow2(url)
	{
	window.open(url, "newwindow", "scrollbars=yes,setResizable=yes,toolbar=yes,width=400,height=450,screenx=10,screeny=10");
	}


//-->

