$.setupJMPopups({
				screenLockerBackground: "#666666",
				screenLockerOpacity: "0.7"
				});
				
function openStaticPopup($div) {
	$.openPopupLayer({
		name: "Popup",
		width: 550,
		target: $div
	});
}

function openAssortimentPopup() {
	$.openPopupLayer({
		name: "Popup",
		width: 900,
		url: "index.php?id=12"
	});
}

function openDynamicPopup($page) {
        $.openPopupLayer({
                name: "Popup",
                width: 550,
                url: $page
        });
}


