// ----------------------------------------------------------------
//    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();
}

function makewindow(width, height, windowName) {
	var mainWin = null;
	var scrWidth = screen.width;
	var scrHeight = screen.height;
	if (!width) {
		width=scrWidth-20;
	}
	if (!height) {
		height=scrHeight-80;
	}
	if(!mainWin || mainWin.closed) {
		mainWin = window.open ("", windowName, 'top='+(scrHeight-height-40)/2+',left='+(scrWidth-width-10)/2 + ',toolbar=no,directories=no,location=no,status=no,menubar=no,scrollbars=yes' + ',resizable=yes,width='+width+',height='+height);
	}
}