﻿/*
document.getElementById("top").appendChild(document.createElement("<div id=top_shadow></div>"));
document.getElementById("bottom").appendChild(document.createElement("<div id=bottom_shadow></div>"));
*/

function popupImage(width, height, imageUrl, title)
{
	//window.open(imageUrl, "imagePopup", "height=" + (height + 30) + ",width=" + (width + 30) + ",resizable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no");
	var win = window.open("", "_blank", "height=" + height + ",width=" + width + ",resizable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no");
	win.location.href = "javascript:document.write('<html><head><title>" + title + "</title><style>html,body{padding:0;margin:0;}</style></head><body><img%20src=http://mggp.ctsoftstudio.com" + imageUrl + "></body></html>')";
	//win.location.href = "javascript:document.write('<html><head><title>" + title + "</title><style>html,body{padding:0;margin:0;}</style></head><body><img%20src=http://localhost:55301" + imageUrl + "></body></html>')";
}

function popupImage(width, height, imageUrl, title) {
    var win = window.open("", "_blank", "height=" + height + ",width=" + width + ",resizable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no");
    //win.location.href = "javascript:document.write('<html><head><title>" + title + "</title><style>html,body{padding:0;margin:0;}</style></head><body><a%20href=#%20onclick=window.close();><img%20src=" + document.location.protocol + "//" + document.location.host + imageUrl + "%20border=0></a></body></html>')";
    win.location.href = "/img.aspx?desc=" + escape(title) + "&src=" + escape(document.location.protocol + "//" + document.location.host + imageUrl) + "&w=" + width + "&h=" + height;
}

function popupPrint(url) {
    window.open(url, "_blank", "height=600,width=600,resizable=yes,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

function popupNewsItem(lang, itemId) {
    window.open("/" + lang + "/news-item.aspx?iid=" + itemId, "_blank", "height=600,width=600,resizable=yes,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

function popupArticle(lang, itemId) {
    window.open("/" + lang + "/article.aspx?aid=" + itemId, "_blank", "height=600,width=600,resizable=yes,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}

