Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/08/2005, 07:25
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 9 meses
Puntos: 39
Parametros

Seria asi:
Código:
<script language="javascript">
function abreventana(URL,ancho,alto)
{
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + ancho+",height="+ alto +"');");
}
</script>
Código:
on (release) {
	getURL("javascript:abreventana('http://www.cualquiercosa.com',600,350)");
}
.