<!--
function Popup(page,size) 
	{if (size==0) {var w=300; var h=200;} 
	else {var w=500;var h=400;}
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;

	window.open(page,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition)
	}
//-->

