// JavaScript Document

<!--
function openNewWindow2(senderLink,height,width) {
url = senderLink.href;
var xMax = screen.width;
var yMax = screen.height;

var left = xMax / 4;
var top = yMax / 8;

newWindow = window.open(url,'NewWindow','width='+width+',height='+height+',resizable=1,menubar=1,status=0,scrollbars=1,location=1,toolbar=1,dependent=1,titlebar=0,left='+left+',top='+top+',screenX='+left+',screenY='+top+'');
newWindow.focus();
return false;
}
//-->