A DHTML window can never be larger than the browser. If you need to open a full size window using minimal 'chrome', use the window.open() method:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function fullwin(targeturl){
var h=screen.availHeight, w=screen.availWidth
var full=window.open(targeturl,"","top=0,left=0,width="+w+",height="+h+",scrollbars=1")
if (document.documentElement.filters)
full.resizeTo(w,h);
}
</script>
<form>
<input type="button" onClick="fullwin('somepage.htm')" value="Open window">
</form>
</head>
<body>
</body>
</html>
You can have somepage.htm be whatever page you like, as long as it is on the same domain as the above opener page.
Bookmarks