﻿<!--
function changelayer_color(newcolor,id){   
  if(document.layers){            
    //thisbrowser="NN4";             
    document.layers[id].bgColor=newcolor;         
  }         
  if(document.all){ 
     //thisbrowser="ie"          
    eval( "document.all."+id+".style.backgroundColor=newcolor;" );  
  }        
  if(!document.all && document.getElementById){        
     //thisbrowser="NN6";          
    document.getElementById(id).style.backgroundColor=newcolor;           
  }
}
// -->

<!-- Hide Script
        function move_in(img_name,img_src) {
        document[img_name].src=img_src;
        }

        function move_out(img_name,img_src) {
        document[img_name].src=img_src;
        }
//End Hide Script-->