<!--
//rollovers...

if(document.images) {
     
		
	boton1a = new Image();
		boton1a.src = "images/boton1a.gif";
		boton1b = new Image();
		boton1b.src = "images/boton1b.gif";
		
	boton2a = new Image();
		boton2a.src = "images/boton2a.gif";
		boton2b = new Image();
		boton2b.src = "images/boton2b.gif";
		
	boton3a = new Image();
		boton3a.src = "images/boton3a.gif";
		boton3b = new Image();
		boton3b.src = "images/boton3b.gif";
		
        boton4a = new Image();
		boton4a.src = "images/boton4a.gif";
		boton4b = new Image();
		boton4b.src = "images/boton4b.gif";
		  		
        boton5a = new Image();
		boton5a.src = "images/boton5a.gif";
		boton5b = new Image();
		boton5b.src = "images/boton5b.gif";

        boton6a = new Image();
		boton6a.src = "images/boton6a.gif";
		boton6b = new Image();
		boton6b.src = "images/boton6b.gif";      
		
		
}

function onoff(imgName,state) {
        if(document.images) {               
		document.images[imgName].src = eval(imgName+state+".src");
        }
}         
//-->