<!--
function openWin (url, name, width, height) {
		lpos = (screen.width-width)/2;
		tpos = (screen.height-height)/2;

		if (lpos < 0) {
			lpos = 0;
		}
		if (tpos < 0) {
			tpos = 0;
		}
		newWin = window.open(url, name, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+"px,height="+height+"px,left="+lpos+"px,top="+tpos+"px");
		if (window.focus) {
			newWin.focus()
		}
		return false;
}
//-->
