F
<script type="text/javascript">
<!--
function popup(url)
{
var width = screen.availWidth-8;
var height = screen.availHeight-28;
popupWin = window.open(url,'popwin','top=0,left=0,width='+width+',height='+height+',scrollbars=yes');
}
popup("http://www.google.de");
//To load via link, use something like below:
//<a href="java\1:popup('http://www.google.de')">Click here</a>
//-->
</script>