<!--
	image1on = new Image(89, 26);
	image1on.src = "./images/homeon.gif"; 
	image1off = new Image(89, 26);
	image1off.src = "./images/homeoff.gif";
	image4on = new Image(89, 26);
	image4on.src = "./images/abouton.gif"; 
	image4off = new Image(89, 26);
	image4off.src = "./images/aboutoff.gif";
	image2on = new Image(89, 26);
	image2on.src = "./images/serviceson.gif"; 
	image2off = new Image(89, 26);
	image2off.src = "./images/servicesoff.gif";
	image5on = new Image(89, 26);
	image5on.src = "./images/contacton.gif"; 
	image5off = new Image(89, 26);
	image5off.src = "./images/contactoff.gif";
	image3on = new Image(89, 26);
	image3on.src = "./images/producton.gif"; 
	image3off = new Image(89, 26);
	image3off.src = "./images/productoff.gif";
function img_act(imgName) {
   imgon = eval(imgName + "on.src");
   document[imgName].src = imgon;
}
function img_inact(imgName) {
   imgoff = eval(imgName + "off.src");
   document[imgName].src = imgoff;
}
// open new window
function openWindow(url, name, rs, w, h) {
  var resize = "";
  if (rs) {
    resize = "resizable,";
  }
  popupWin = window.open(url, name, 'scrollbars' + resize +
'width=' + w + ',height=' + h);
 
}
// END HIDING FROM OLDER BROWSERS -->		
