// JavaScript Document

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

var left = xMax / 2;

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