cual es el problema no lo se....aunaqui les dejo el codigo... espero y me puedan ayudar....
Las partes del codigo remarcadas son las del popup...
Código:
// Edita las lineas para añadir los eventos delcalendario...
//Mes del Evento ----> NOTA: LA PRIMERA LETRA DEL MES EN MAYUSCULAS....
x3_month = "Abril";
var myday=new Array();
//Dia del Calendario
myday[0] = "3";
var evento = new Array(1)
//Direccion de la pagina del evento
evento[0] = "5.htm"
//-------- This code was modifed by X3 [frogx3.net] ------------- No edit
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=600');");
}
function buildCal(m, y, cM, cH, cDW, cD, brdr){
var mn=['Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'];
var dim=[31,0,31,30,31,30,31,31,30,31,30,31];
var oD = new Date(y, m-1, 1); //DD replaced line to fix date bug when current day is 31st
oD.od=oD.getDay()+1; //DD replaced line to fix date bug when current day is 31st
if(oD.od == 1) dayofweek = "Domingo";;
if(oD.od == 2) dayofweek = "Lunes";;
if(oD.od == 3) dayofweek = "Martes";;
if(oD.od == 4) dayofweek = "Miercoles";;
if(oD.od == 5) dayofweek = "Jueves";;
if(oD.od == 6) dayofweek = "Viernes";;
if(oD.od == 7) dayofweek = "Sabado";;
var todaydate=new Date() //DD added
var scanfortoday=(y==todaydate.getFullYear() && m==todaydate.getMonth()+1)? todaydate.getDate() : 0 //DD added
dim[1]=(((oD.getFullYear()%100!=0)&&(oD.getFullYear()%4==0))||(oD.getFullYear()%400==0))?29:28;
var t='<table cols="7" cellpadding="0" border="0" cellspacing="0" align=center><tr align="center">';
t+='<td colspan="7" align="left" class=contenido>'+dayofweek+' '+scanfortoday+' de '+mn[m-1]+' de '+y+'</td></tr><tr align="center">';
for(s=0;s<7;s++)t+='<td class=contenido><b>'+"DLMMJVS".substr(s,1)+'</b></td>';
t+='</tr><tr align="center">';
for(i=1;i<=42;i++){
var x=((i-oD.od>=0)&&(i-oD.od<dim[m-1]))? i-oD.od+1 : ' ';
color="";
if (x3_month==mn[m-1]){
for(f=0;f<myday.length; f++){
if (x==myday[f]){ //x3
URLx = evento[f]
x='<span class="enlaces"><a href="javascript:popUp('+URLx+')">'+x+'</a></span>'; //x3
color="background=images/ico.gif";
}
}
}
if (x==scanfortoday){ //DD added
x='<span class="today">'+x+'</span>'; //DD added
color="background=images/ico2.gif";
}
t+='<td width=29 height=29 '+color+' class="contenido">'+x+'</td>';
if(((i)%7==0)&&(i<36))t+='</tr><tr align="center">';
}
return t+='</tr></table>';
}
Adios y gracias de antemano...
NOTA:A una pregunta por que desaparecen los mensajes del foro...y no se van paginando...???? Antes era asi despues de la actualizacion del servidor...cambiaron varias cosas...

