<!--
function popup(url, width, height, params) {
	var top = (screen.height - height) / 2;
	var left = (screen.width - width) / 2;
	window.open(url,"","top=" + top + ",left=" + left + ",width=" + width + ",height=" + height + "," + params);
}
//-->