<script>
<!--
function
winopen(){
var
targeturl="../index.html"
newwin=window.open("","","scrollbars")
if
(document.all){
newwin.moveTo(0,0)
newwin.resizeTo(screen.width,screen.height)
}
newwin.location=targeturl
}
//-->
</script>
<form>
<input
type="button" onClick="winopen()" value="Open
window">
</form>