Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/02/2010, 05:50
gazaposa
 
Fecha de Ingreso: noviembre-2009
Mensajes: 209
Antigüedad: 15 años, 5 meses
Puntos: 0
Respuesta: me dice q no esta declarada la funcion y si q lo esta

He hecho lo siguiente, pero me dice que tampoco esta definida, y si que esta!!!!

Response.write("<img src=""GALERIA/"&RS.FIELDS("LOCALIDAD")&"/THUMBS/"&RS.FIELDS("NOMBRE")&""" width=160 height=120 onclick=""javascript:mostrarFoto('GALERIA/"&RS.FIELDS("LOCALIDAD")&"/IMG/"&RS.FIELDS("NOMBRE")&"','"&server.HTMLEncode(RS.F IELDS("DESCRIPCION"))&"','504','600')"">")


<script>
mostrarFoto(page,descripcion, endWidth, endHeight)
{
windowprops="width="+endWidth+",height="+endHeight +",left=" + ((screen.endWidth) / 2) + ",top=" + ((screen.endHeight) / 2) + ",scrollbars=0,location=0,toolbar=no, directories=no, status=no, menubar=no,resizable=no ";
w = window.open(page,windowprops);
if (w != null)
w.focus();
}
</script>