Te he consegido este código, pero maximizado del todo no lo he visto pero modificando donde pone
CODE
'400','400'
por un tamaño mayor se abrirá mas grande.
CODE
<html>
<head>
<title>Abre ventana emergente desde un vínculo</title>
<p align="center"><b>Abre ventana emergente desde un vínculo</b>
<script LANGUAGE="JavaScript">
<!-- Original: Eric King (eric_andrew_king[arroba]hotmail.com) -->
<!-- Web Site: http://redrival.com/eak/ -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End -->
</script>
</head>
<body>
<!-- Put the URL inside the link's rel="nofollow" href="..." section, then carefully -->
<!-- change 'name' to a name for your popup window. The last three -->
<!-- items represent the popup window width, height, and scrollbars. --></p>
<p align="center">
<a rel="nofollow" href="http://www.yahoo.com/" onclick="NewWindow(this.rel="nofollow" href,'name','400','400','yes');return false;">
Pulsa aquí para abrir Yahoo.com en una pantalla popup (emergente)</a> </p>
<p></p>
<center>
<p> </p>
</center>
<p></p>
</body>
</html>
Espero que te sirva, por lo menos de apaño.