// ----------------------------------------------------------------
//    Copyright e-point.S.A.
// ----------------------------------------------------------------

var windows = {};
var UNDEF = top._undefined_;

function openPopUp(url, name, width, height) {
	var top  = (screen.height-height-40)/2;
	var left = (screen.width-width-10)/2;
	if(!windows[name] || windows[name].closed) {
		windows[name] = window.open ("", name, 'top='+top+',left='+left+',toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+width+',height='+height);
	}
	windows[name].document.location.href = url;
	windows[name].focus();
}
