Ver Mensaje Individual
  #2  
Antiguo 25-03-2010
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Intenta así:

Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title> prueba </title>
<script type='text/javascript'>
function abrir(enlace)
{
    var w = screen.availWidth;
    var h = screen.availHeight;
    var ventana = window.open(enlace.href, '', 'left=0,top=0,width=' + w + ',height=' + h);

    return false;
}
</script>
</head>

<body>
<a href='http://google.com'  target='_blank' onclick='return abrir(this)'>Google</a>
</body>
</html>
// Saludos
Responder Con Cita