function openSuccessPopup() {
	$.openPopupLayer({
        name: "success",
        url: "fileadmin/AEHWEB/templates/popups/popup_success.html",
        parameters: {},
        width: "200",
        height: "80",
        callback: function () {}
	});	
}
    
function closeSuccessPopup() {
    $.closePopupLayer("success");
}

function openErrorPopup() {
        $.openPopupLayer({
        name: "error",
        url: "fileadmin/AEHWEB/templates/popups/popup_error.html",
        parameters: {},
        width: "200",
        height: "80",
        callback: function () {}
        });	
}

function closeErrorPopup() {
    $.closePopupLayer("error");
}
