Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/01/2005, 13:29
MIG-29 Fulcrum
 
Fecha de Ingreso: enero-2005
Mensajes: 87
Antigüedad: 20 años
Puntos: 0
Gracias por tu respuesta, el Script es el siguiente. Como verás, le he puesto otra llamada para que si el Script es bloqueado muestre un texto. En el PC tengo Windows2000 SP4 y va sin problemas, encambio WindowXP SP2 lo considera una amenaza...

<SCRIPT language=JavaScript type=text/javascript>
<!--
// Date Display Function
function displayDate(){
var this_month = new Array(12);
this_month[0] = "Enero";
this_month[1] = "Febrero";
this_month[2] = "Marzo";
this_month[3] = "Abril";
this_month[4] = "Mayo";
this_month[5] = "Junio";
this_month[6] = "Julio";
this_month[7] = "Agosto";
this_month[8] = "Septiembre";
this_month[9] = "Octubre";
this_month[10] = "Noviembre";
this_month[11] = "Diciembre";
var today = new Date();
var day = today.getDate();
var month = today.getMonth();
var year = today.getYear();
if (year < 1900){
year += 1900;
}
return(day+" "+this_month[month]+" " +year);
}
//-->
</SCRIPT>
<SCRIPT language=JavaScript type=text/javascript>
<!--
document.write(displayDate());
//-->
</SCRIPT></b>
<NOSCRIPT><font size=1 face=tahoma >JavaScript Seguro Bloqueado</font></NOSCRIPT>


Tengo quitado como es obvio mi Norton Internet Segurity 2004.

Gracias!