var popups = 0;

function openImageWindow(image, title, date, info) {
	var popupURL = "image-popup.html?image=" + image + "&title=" + escape(title) + "&date=" + date + "&info=" + info;
	popups++;
	var popupWindow = window.open(popupURL, "image_popup" + popups, "menubar=no, resizable=yes, scrollbars=yes, width=300, height=300");
};


function openNewsWindow(image) {
	var popupURL = "news-popup.html?image=" + image;
	popups++;
	var popupWindow = window.open(popupURL, "news_popup" + popups, "menubar=no, resizable=yes, scrollbars=yes, width=300, height=300");
};


function openVideoWindow(video, title, date, info, type) {
	var popupURL = "video-popup.html?video=" + video + "&title=" + escape(title) + "&date=" + date + "&info=" + info + "&type=" + type;
	popups++;
	var popupWindow = window.open(popupURL, "video_popup" + popups, "menubar=no, resizable=yes, scrollbars=yes, width=300, height=300");
};


function openShopWindow(image, title, price, info, buy, colors, images, samples, links) {
	var popupURL = "shop-popup.html?image=" + image + "&title=" + title + "&price=" + price + "&info=" + info + "&buy=" + escape(buy) + "&colors=" + colors + "&images=" + images + "&samples=" + samples + "&links=" + escape(links);
	popups++;
	var popupWindow = window.open(popupURL, "shop_popup" + popups, "menubar=no, resizable=yes, scrollbars=yes, width=300, height=300");
};


function openHiddenWindow() {
	var popupURL = "mk12-popup.html";
	popups++;
	var popupWindow = window.open(popupURL, "hidden_popup" + popups, "menubar=no, resizable=yes, scrollbars=yes, width=300, height=460");
	popupWindow.blur();
	window.focus();
};