Muchas gracias por tu ayuda, creo que la mejor manera de hacerlo es 1 archivo por mes (frase01.htm, frase02.htm, ..., frase12.htm) para organizarlo mejor y que tarde mucho menos en cargarse. Les escribo el código que voy a utilizar a ver si debo realizar alguna modificación para mejorarlo.-
Saludos.
------- frase11.htm -----------
<html>
<head>
<title>Frase Del Dia - Popup</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var msg = new Array();
Stamp = new Date();
today = Stamp.getDate();
msg[1] = "Pone una frase 1!";
msg[2] = "Pone una frase 2!";
msg[3] = "Pone una frase 3!";
msg[4] = "Pone una frase 4!";
msg[5] = "Pone una frase 5!";
msg[6] = "Pone una frase 6!";
msg[7] = "Pone una frase 7!";
msg[8] = "Pone una frase 8!";
msg[9] = "Pone una frase 9 !";
msg[10] = "Pone una frase 10!";
msg[11] = "Pone una frase 11!";
msg[12] = "Pone una frase 12!";
msg[13] = "Pone una frase 13!";
msg[14] = "Pone una frase 14!";
msg[15] = "Pone una frase 15!";
msg[16] = "Pone una frase 16!";
msg[17] = "Pone una frase 17!";
msg[18] = "Pone una frase 18!";
msg[19] = "Pone una frase 19!";
msg[20] = "Pone una frase 20!";
msg[21] = "Pone una frase 21!";
msg[22] = "Pone una frase 22!";
msg[23] = "Pone una frase 23!";
msg[24] = "Pone una frase 24!";
msg[25] = "Pone una frase 25!";
msg[26] = "Pone una frase 26!";
msg[27] = "Pone una frase 27!";
msg[28] = "Pone una frase 28!";
msg[29] = "Pone una frase 29!";
msg[30] = "Pone una frase 30!";
function writeTip() {
document.write(msg[today]);
}
// End -->
</script>
</head>
<body>
<script>writeTip();</script>
<br>
<FORM>
<INPUT TYPE="BUTTON" VALUE="Cerrar" onClick="window.close()">
</FORM>
</CENTER>
</body>
</html>
------------------------------
---------index.htm-------------
<html>
<head>
<title>Frase Del Dia - Principal</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
var mydate=new Date();
var month=mydate.getMonth() + 1;
function Ventana()
{
Mensaje = window.open('frase'+month+'.htm', 'VentanaAviso', 'width=520,height=300,left=100,top=100,scrollbars= yes')
}
</script>
</head>
<body OnLoad="JavaScript
: Ventana();">
Frase Del Dia
</body>
</html>
------------------------------