// JavaScript Document
<!--
var newwindow;
function load(url)
{
	newwindow=window.open(url,'','height=700, width=900, scrollbars=yes, menubar=no, resizable=yes, toolbar=no, location=no, status=no, screenX=50, screenY=50, left=50, top=50');
	if (window.focus) {newwindow.focus()}
}

//-->