var now = new Date ();
var day = now.getUTCDay();
var hora = now.getUTCHours();
var min = now.getUTCMinutes();
var fecha = now.getDate();
var mes = now.getMonth();

if ((fecha == 23) && (mes == 10))
document.write("<img src=C.gif alt=Cerrado1>");
else if ((fecha == 23) && (mes == 11))
document.write("<img src=C.gif alt=Cerrado1>");
else if ((fecha == 31) && (mes == 11))
document.write("<img src=C.gif alt=Cerrado1>");

else if (day == 6)
document.write("<img src=C.gif alt=Cerrado1>");
else if (day == 0 )
document.write("<img src=C.gif alt=Cerrado2>");
else if ((0<day && day<6) && (hora <1))
document.write("<img src=A.gif alt=Abierto1>");
else if ((0<day && day<6) && (1 <= hora) && (hora < 6))
document.write("<img src=A.gif alt=Abierto2>");
else if ((0<day && day<6) && (hora ==6)&& (min<30)) 
document.write("<img src=A.gif alt=Abierto3>")
else if ((0<day && day<6) && (hora ==6)&& (min>30)) 
document.write("<img src=C.gif alt=Cerrado3>");
else if ((0<day && day<6) && (hora>=7) && (hora<=23)) 
document.write("<img src=C.gif alt=Cerrado3>");
