12/09/2003, 03:38
|
| | | Fecha de Ingreso: marzo-2003 Ubicación: Madrid
Mensajes: 40
Antigüedad: 21 años, 10 meses Puntos: 0 | |
Prueba con algo como esto...
<html>
<head><!--left=50,top=50,width=700,height=600-->
<title>Onclick</title>
<script language="javascript">
function abre(url){
ventana_abrir = window.open (url,"popup","toolbar=0,location=0,directories=0,s tatus=0,menubar=0,scrollbars=1,resizable=1,fullscr een=1,width=800,height=600");
}
</script>
</head>
<body>
<a href="#" onClick="abre('documento.doc')">probar ahora</a>
</body>
</html> |