// JavaScript Document
<!--
var newwindow;
function load2(url)
{
	newwindow=window.open(url,'','height=800, width=800, 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()}
}

//-->