	function popUP(url, w, h, title) { 
		lm = (screen.width - w)/2;
		tm = (screen.height - h)/2;
		popup = window.open(url,title,"width="+w+",height="+h+",left="+lm+",top="+tm+",scrollbars=yes")
		popup.focus();
	}
