<!--
if(document.images){
	b1off=new Image();b1off.src="images/homeoff.gif";
	b1on=new Image();b1on.src="images/homeon.gif";
	b2off=new Image();b2off.src="images/productsoff.gif";
	b2on=new Image();b2on.src="images/productson.gif";
	b3off=new Image();b3off.src="images/aboutusoff.gif";
	b3on=new Image();b3on.src="images/aboutuson.gif";
	b4off=new Image();b4off.src="images/orderoff.gif";
	b4on=new Image();b4on.src="images/orderon.gif";
	b5off=new Image();b5off.src="images/contactoff.gif";
	b5on=new Image();b5on.src="images/contacton.gif";
}
function enable(bn){
	if(document.images){
		loc = "b" + bn;
		document[loc].src = eval(loc + "on.src");
	}
}
function disable(bn){
	if(document.images){
		loc = "b" + bn;
		document[loc].src = eval(loc + "off.src");
	}
}
function openWindow(arg1, title, width, height){
          gg=window.open ("","Browser","status=no,toolbars=no,scrollbars=no,width="+width+",height="+height+"")
		  gg.document.open()
		  gg.document.write("<html><head><title>"+title+"</title></head><BODY bgcolor='#000000' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src='"+arg1+"'></body></html>")
		  gg.document.close()
    }
// -->