function on_capa(capa) {
  eval (capa + ".style.visibility = 'visible'");
  }

function off_capa(capa) {
  eval (capa + ".style.visibility = 'hidden'");
  }
  
function change_col(ele,col) {
  eval ("ele.style.background = '" + col + "'");
  ele.style.cursor = "hand";
  }  
  
function brillo(which,color){
if (document.all||document.getElementById)
which.style.backgroundColor=color
  }
  
function MostrarFecha()   
   {   
   var nombres_dias = new Array("Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado")   
   var nombres_meses = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre")   
  
   var fecha_actual = new Date()   
  
   dia_mes = fecha_actual.getDate()     //dia del mes   
   dia_semana = fecha_actual.getDay()   //dia de la semana   
   mes = fecha_actual.getMonth() + 1   
   anio = fecha_actual.getFullYear()   
  
   //escribe en pagina   
   document.write(nombres_dias[dia_semana] + ", " + dia_mes + " de " + nombres_meses[mes - 1] + " de " + anio)   
   }   
   
function newWindow(){ 

/*habro una ventana en un pop up*/

window.open("camiseta_ilusion.html" , "NEW" , "width=400,height=525,scrollbars=NO");

}

   