var losFondos = new Array();
losFondos[0] = 'cabecera1.jpg';
losFondos[1] = 'cabecera2.jpg';
losFondos[2] = 'cabecera3.jpg';


function asignarEstilo(){
	if(navigator.appName == "Netscape")
		document.write("<link rel='stylesheet' href='css/estilo_fx.css' type='text/css' />");
	else
		//alert(navigator.platform);
		document.write("<link rel='stylesheet' href='css/estilo_ie.css' type='text/css' />");
}
function obtiene_fecha() {
   
   var fecha_actual = new Date()

   var dia = fecha_actual.getDate()
   var mes = fecha_actual.getMonth() + 1
   var anio = fecha_actual.getFullYear()

   if (mes < 10)
      mes = '0' + mes

   if (dia < 10)
      dia = '0' + dia

   return (dia + "/" + mes + "/" + anio)
}

function escribirFecha() {
   document.write ( obtiene_fecha() )
}



