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 = filename+".jpg";
	bigImgNr = imgIndex;
}

function openNewsdetails(id) {
	newsWindow = window.open("news_details.php?id="+id, "newsWin", "width=784,height=528,top=50,left=50,scrollbars=yes");
	newsWindow.focus();
}
