<!--
function popupcentree(height,width,theUrl,theOptions) {
	var winHeight=Math.ceil((screen.availHeight-height)/2);
	var winWidth=Math.ceil((screen.availWidth-width)/2);
	window.open(theUrl,'tabform','height='+height+',width='+width+',left='+winWidth+',top='+winHeight+','+theOptions);
}
-->