<!--
	isGoodBrowser = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3) || ((navigator.appName.indexOf("Explorer") > -1) && parseInt(navigator.appVersion) >= 4);
	IMGBASE = "/pic/";
	ALLIMAGES=2;
	i=ALLIMAGES;
	IMGLOADED=false;
	c_on='';

	if (isGoodBrowser)
	{
		iar=new Array();
		c_im=new Image();
		iar['m1']= new Image(); iar['m1'].src=IMGBASE + "m2_1o.gif";
		iar['m2']= new Image(); iar['m2'].src=IMGBASE + "m2_2o.gif";
		iar['m3']= new Image(); iar['m3'].src=IMGBASE + "m2_3o.gif";
		iar['m4']= new Image(); iar['m4'].src=IMGBASE + "m2_4o.gif";
		iar['m5']= new Image(); iar['m5'].src=IMGBASE + "m2_5o.gif";
	}	  

	function ion(img_name)
	{
		if (isGoodBrowser && IMGLOADED)
		{
			c_im.src=document.images[img_name].src;
			c_on=img_name;
			document.images[img_name].src=iar[img_name].src;
	 	};	
	}
	function ioff()
	{
		if (isGoodBrowser && c_on.length>0 && IMGLOADED)
			document.images[c_on].src=c_im.src;
	}
	function galt()
	{
		i--;
		if (i == 0 && isGoodBrowser)
			IMGLOADED = true;
	}
// -->

