function openEvent(id) {
    eventWindow = window.open("eventdetails.php?elementID="+id,"eventWin","width=1004,height=490,top=50,left=2,scrollbars=yes");
    eventWindow.focus();
}

function showThumbs() {
	if(document.getElementById("thumbsDiv")) {
		document.getElementById("thumbsDiv").style.display = "";
		document.getElementById("loadingDiv").style.display = "none";
	}
}

function enlargeImg(filename,id,imgIndex)  {
	document.getElementById("bigimg").src = "/img/upload/"+filename+".jpg";
	bigImgNr = imgIndex;
}

