	
	document.observe('dom:loaded', function(){
		if ($('contain')) $('contain').insert({before: '<div id="filter"></div><div id="enlarge"></div>'});
		if ($('filter')) $('filter').hide();
		if ($('enlarge')) $('enlarge').hide();
	});

	function closeEnlarge() {
		$('filter').hide();
		$('enlarge').hide();
	}
	
	var enlargeHTML = '';

	function enlarge(imgSrc, imgWidth, imgHeight, imgAltTxt, ImgTxt, ImgCategory, ImgID) {
		enlargeHTML = '<div id="imageInfo" style="width:' + imgWidth + 'px;margin-top:'+Math.max(document.documentElement.scrollTop,20)+'px">';
		enlargeHTML += '<a href="#"  class="close" onclick="closeEnlarge(); return false;"><img src="/html/images/close.gif" alt="'+snippet('miscpopupclose')+'" /></a>';
		enlargeHTML += '<img src="' + imgSrc.replace('_PNG', '_JPG').replace('.png', '.jpg').replace('-CO', '-PU') + '" width="' + imgWidth + '" height="' + imgHeight +'" alt="' + imgAltTxt + '"/><br />';

		enlargeHTML += '</div>';
		$('filter').show();
		$('enlarge').innerHTML = enlargeHTML;
		$('enlarge').show();
	}
	
	function downloadImage(ImgCategory, ImgID) {
		window.open('/scripts/pages/'+snippet('LangID')+'/auth/download_image.php?c=' + ImgCategory + '&amp;i=' + ImgID + '');
	}