<!--

	function popUp(center,url,winName,width,height,features) {
	  if (center) {
		  x = (640 - width)/2, y = (480 - height)/2;
		  if (screen) {
			y = (screen.availHeight - height)/2;
			x = (screen.availWidth - width)/2;
		  }
			if (screen.availWidth > 1800) { 
				x = ((screen.availWidth/2) - width)/2; 
			} 
		}
		var newWin = window.open(url,winName,'scrollbars=no,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+','+features);
		newWin.focus();
	}
	
	function printPage() {
	  if (window.print)
		window.print();
	  else
		alert("Sorry, your browser doesn't support this feature. To print this page: Please right-click and select 'Print'");
	}

//-->
