﻿<!--
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;           
  }
}
// -->