// JavaScript Document


function imgpreLoadImg() {
	
	w=this.width+50;
	h=this.height+25;
	i="<div style='text-align:center;'><img src='"+this.src+"' alt='"+this.alt+"'></div>";
	
	if (this.icaption && this.icaption != "<br />" && this.icaption != "") {
		i+="<div style='display:block;padding:0px 25px 0px 25px;'>"+this.icaption+"</div>"; 
		h+=(this.icaption.length/40)*10	
	}
	 
	 shModal(i,w,h);
	
 	
}

function evCMS_gallery_show(iimg,ialt,icaption) {

	 var imgpre=new Image();  
	 imgpre.onload=imgpreLoadImg; 
	 imgpre.icaption=icaption;
	 imgpre.alt=ialt;
	 imgpre.src=iimg; 
	 
	 
}

function hideModal(dI) {
	 document.getElementById(dI).style.display = "none";
}

