Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/07/2005, 06:21
mieltxo
 
Fecha de Ingreso: junio-2005
Mensajes: 79
Antigüedad: 18 años, 10 meses
Puntos: 1
Mensaje

Lo puedes hacer con JavaScript:

<script>
function abrir(URL){
window.open(URL,"",'width=300,height=300,left=320, top=200,toolbar=0,scrollbars=0,statusbar=0,menubar =0,resizable=0');
}
</script>


<input name="Boton" type="submit" id="Boton" value="Boton" onclick="abrir('link.php');">



Un saludo