
function openPopup(url, windowName, width, height, popupX, popupY)
	{
		var optiuni =
		"screenX=" + popupX +
		",left=" + popupX +
		",screenY=" + popupY +
		",top=" + popupY +
		",width=" + width +
		",height=" + height +
		",toolbar=false,scrollbars=false,resizable=false,status=false"+
		",menubar=false,location=false,directories=false";
		window.open(url, windowName, optiuni, true);
	}
		