/*
 * Rotacion Banners 
 * (c) 2008-2009 Gustavo Quiroga 
 *
 */

s_date=new Date();
day=new Date();
x=day.getHours();
min=day.getMinutes();

if(s_date.getDay() == 1) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/lunes.htm" width="400" height="430" frameborder="0"></iframe>')
} else 
if(s_date.getDay() == 2) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/martes.htm" width="400" height="430" frameborder="0"></iframe>')
} else 
if(s_date.getDay() == 3) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/miercoles.htm" width="400" height="430" frameborder="0"></iframe>')
} else 
if(s_date.getDay() == 4) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/jueves.htm" width="400" height="430" frameborder="0"></iframe>')
} else 
if(s_date.getDay() == 5) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/viernes.htm" width="400" height="430" frameborder="0"></iframe>')
} else 
if(s_date.getDay() == 6) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/sabado.htm" width="400" height="430" frameborder="0"></iframe>')
} else 
if(s_date.getDay() == 0) {
if (x>=0 && x<24) 
document.write('<iframe src="programacion/domingo.htm" width="400" height="430" frameborder="0"></iframe>')
}   


