<!--
    //*--- Hold all the IRIS module name button with button on and button off ---*

    image0 = new Image();
    image0.src = "/Global_pic/but_hom.gif";
    image0on = new Image();
    image0on.src = "/Global_pic/but_hom_ov.gif";
    image0stay = new Image();
    image0stay.src = "/Global_pic/but_hom_ov.gif";

    image1 = new Image();
    image1.src = "/Global_pic/but_new.gif";
    image1on = new Image();
    image1on.src = "/Global_pic/but_new_ov.gif";
    image1stay = new Image();
    image1stay.src = "/Global_pic/but_new_ov.gif";
	
    image2 = new Image();
    image2.src = "/Global_pic/but_tec.gif";
    image2on = new Image();
    image2on.src = "/Global_pic/but_tec_ov.gif";
    image2stay = new Image();
    image2stay.src = "/Global_pic/but_tec_ov.gif";

    image3 = new Image();
    image3.src = "/Global_pic/but_pro.gif";
    image3on = new Image();
    image3on.src = "/Global_pic/but_pro_ov.gif";
    image3stay = new Image();
    image3stay.src = "/Global_pic/but_pro_ov.gif";
	
    image4 = new Image();
    image4.src = "/Global_pic/but_dow.gif";
    image4on = new Image();
    image4on.src = "/Global_pic/but_dow_ov.gif";
    image4stay = new Image();
    image4stay.src = "/Global_pic/but_dow_ov.gif";

    image5 = new Image();
    image5.src = "/Global_pic/but_con.gif";
    image5on = new Image();
    image5on.src = "/Global_pic/but_con_ov.gif";
    image5stay = new Image();
    image5stay.src = "/Global_pic/but_con_ov.gif";

 imageStay = ""

 function on(name){
     if (imageStay != name){
         document[name].src = eval(name + "on.src");
     }
 }     

 function off(name){
     if (imageStay != name){
         document[name].src = eval(name + ".src");
     }
 }     

 function stay(name){
     document[name].src = eval(name + "stay.src");
     if (imageStay != name){
     if (imageStay != ""){
         document[imageStay].src = eval(imageStay + ".src");   
      }  
     }
     imageStay = name
 }
//-->