<!--
function ShowWindow ( site, w, h, scrollit ) {
	x = screen.availWidth/2-w/2;
	y = screen.availHeight/2-h/2;
	
	window.open( site ,'','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+', hotkeys=no,location=no,menubar=no,resizable=no,scrollbars='+scrollit+',status=no,toolbar=no');
}
-->
