<!--
	function popup(url,name,width,height) {
		HorizPos = 0;
		VertPos = 0;
		if(screen){
			HorizPos = (screen.width-width) / 2;
			VertPos = (screen.height-height) / 2;
		}
		varPopupWin=window.open(url, name,'width='+width+',height='+height+',left='+HorizPos+',top='+VertPos+',scrollbars=yes,toolbar=no,menubar=no,resizeable=yes');
		varPopupWin.focus();
	}
-->