if (jQuery) (function(jQuery) {
	jQuery.extend(jQuery.ark, { downloadGame: function() { } });
	jQuery.extend(jQuery.ark.downloadGame, {
		dummy: 0
	});
})(jQuery);
function loadDownloadScreen()
{
	document.getElementById('ShowDownloadGameLargeScreenDialog').style.width = document.getElementById('PopUp_WinDownIMG').clientWidth + 20 + 'px';
	document.getElementById('ShowDownloadGameLargeScreenDialog').style.left = (document.body.offsetWidth / 2) - (document.getElementById('PopUp_WinDownIMG').clientWidth / 2) - 20 + 'px';
	document.getElementById('PopUp_WinTable').style.width = document.getElementById('PopUp_WinDownIMG').clientWidth + 20 + 'px';
	document.getElementById('PopUp_WinClose').style.marginLeft = document.getElementById('PopUp_WinDownIMG').clientWidth - 10 + 'px';
}
function ShowDownloadGameLargeScreenDialog(largeScreenImgUrl)
{
	var content = tmpl('tmplDownloadGamelargeScreen', { img: largeScreenImgUrl });
	jQuery.ark.dialog.ShowOKDialog('ShowDownloadGameLargeScreenDialog', 'Download Game Screenshot', content);
}
