Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/05/2004, 13:57
jaiam
 
Fecha de Ingreso: mayo-2004
Mensajes: 4
Antigüedad: 20 años, 6 meses
Puntos: 0
Hola PatomaS,

te envio el codigo:
programa que llama

<SCRIPT TYPE="text/javascript" LANGAUGE="JavaScript"><!--
function y2k(number) { return (number < 1000) ? number + 1900 : number; }

var today = new Date();
var day = today.getDate();
var month = today.getMonth();
var year = today.getFullYear();
function padout(number) { return (number < 10) ? '0' + number : number; }

function restart() {
document.grabar_paciente.v_fecha1.value = ' ' + padout(day) + '/' + padout(month - 0 + 1) + '/' + year;
mywindow.close();
}
function newWindow() {
mywindow=open('http://cal.htm','Calendario','resizable=no,width=420,heig ht=220');
mywindow.location.href = 'http://condor.utalca.cl/clinica/librerias/cal.htm';
if (mywindow.opener == null) mywindow.opener = self;
}


<td width="5%" class="td_ppto_izq">Fecha Nacimiento:</td>
<td width="10%" class="td_ppto_izq">
<INPUT TYPE="text" NAME="v_fecha1" SIZE="11" MAXLENGTH="10" VALUE="26-03-2004" class="td_ppto_total" onfocus="this.blur(444)">
<br>
<input type=button value="Calendario" onclick="newWindow()">
</td>


cal.htm
<BODY BGCOLOR="#C0C0C0" TOPMARGIN=2 LEFTMARGIN=5>

<P><CENTER>

<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
document.write(Calendar(window.opener.month,window .opener.year));
</SCRIPT>

</CENTER>
</BODY>
</HTML>

te estaria muy agradecido por alguna pista, he hecho varios cambios tratando que vuelva a funcionar.

Saludos.