﻿function escribirFecha() {
    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_semana = fecha_actual.getDay();
    mes = fecha_actual.getMonth() + 1;
    anio = fecha_actual.getFullYear();

    document.write(nombres_dias[dia_semana] + ", " + dia_mes + " de " + nombres_meses[mes - 1] + " de " + anio);
}

function mostrarReproductor(IDelemento) {
    var reproductor = document.getElementById(IDelemento);
    if (reproductor) {
        var estado = reproductor.style.display;
        if (estado == 'none')
            reproductor.style.display = "block";
        else 
            reproductor.style.display = "none";
    }
}

function aleatorio(inferior,superior){ 
    numPosibilidades = superior - inferior; 
    aleat = Math.random() * numPosibilidades; 
    aleat = Math.floor(aleat); 
    return parseInt(inferior) + aleat; 
} 

function datosDeContacto(){
	alert("contacto@radioargentina.es\n696-839339\n952-565633 ");
}
