Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/03/2004, 22:24
SEYMURX
 
Fecha de Ingreso: agosto-2003
Mensajes: 48
Antigüedad: 20 años, 7 meses
Puntos: 0
Html y javascript en PHP

Tengo este codigo.

Código:
<html> 
<head> 
    <title>Votame!!</title> 
<script language="JavaScript"> 
function pedirVoto(){ 
    if (confirm("¿Deseas colaborar con tu voto?")){ 
       window.open("http://www.tutop.com/vota.php?id=1664","","") 
    } 
} 
</script> 
</head> 

<body onload="pedirVoto()"> 


</body> 
</html>
Y quiero meterlo en el index.php de un portal php, como lo hago?

Gracias.