<!--
function openLinks(url) {
var windowNote;
var top=0;
var left=0;
var width=733;
var height=550;
var scrwidth=800;
var scrheight=600;
if (window.screen) {
    scrwidth=screen.width;
	scrheight=screen.height;
	left=scrwidth/2-(width+14)/2;
	top=scrheight/2-(height+30)/2;
}
windowNote = window.open('','Note','left='+left+',top='+top+',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height)
windowNote.close(); //for AOL
windowNote = window.open('','Note','left='+left+',top='+top+',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+(height+5)); //5 - for Netscape
windowNote.location=url;
//if ((document.all)&&(window.resizeBy)) {windowNote.resizeBy(width-windowNote.document.body.clientWidth,height-windowNote.document.body.clientHeight);}
windowNote.focus();
}
//-->
