/** © menosdiez.com
 **/

function Abre(page) {
OpenWin = this.open(page, "Ventana", "toolbar=no,menubar=no,location=no,status=yes,scrollbars=yes,resizable=yes,width=450px,height=300px");
}

if (document.images) {
	img1on = new Image(); 
    img1on.src = "../imag/b11.gif";
    img1off = new Image(); 
    img1off.src = "../imag/b10.gif";

	img2on = new Image(); 
    img2on.src = "../imag/b21.gif";
    img2off = new Image(); 
    img2off.src = "../imag/b20.gif";
	
	img3on = new Image(); 
    img3on.src = "../imag/b31.gif";
    img3off = new Image(); 
    img3off.src = "../imag/b30.gif";
	
	img4on = new Image(); 
    img4on.src = "../imag/b41.gif";
    img4off = new Image(); 
    img4off.src = "../imag/b40.gif";
	
	img5on = new Image(); 
    img5on.src = "../imag/b51.gif";
    img5off = new Image(); 
    img5off.src = "../imag/b50.gif";

	img6on = new Image(); 
    img6on.src = "../imag/b61.gif";
    img6off = new Image(); 
    img6off.src = "../imag/b60.gif";
}

  function imgOn(imgName) {
        if (document.images) {
           document[imgName].src = eval(imgName + "on.src");
       }
}
    function imgOff(imgName) {
        if (document.images) {
           document[imgName].src = eval(imgName + "off.src");
       }
}