//
// Kilak (c) 2005
// www.kilak.com

//
// POPUP
//
<!--
// Ventana Nueva
	function Ventana(desktopURL)
      { 
	  var desktop = window.open( desktopURL, "_blank", "width=500,height=400,scrollbars=yes,resizable=no");
      }
// -->
<!--
        if (document.images) {            // Active Images
// ENCENDIDO
            img00on = new Image();
            img00on.src = "/images/footer/kilak-on.gif";


// APAGADO
            img00off = new Image();
            img00off.src = "/images/footer/kilak-off.gif";
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");

        }
}
// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// -->

// Imprimir
		function print_window() 
		   { 
				window.print();
	       }
//-->