// JavaScript Document

	function deleteagendaItem(albumId,returnString)

		{
		if (confirm("Als u doorgaat zal dit item definitief worden verwijderd"))
    {
		location.href="/modules/agenda/admin/deleteagendaItem.asp?id="+albumId+"&"+returnString
		}
		}
	function openagendaUpload(id)
		{
			document.documentElement.style.overflow="hidden"		
		    //document.getElementById("uploadInfo").innerHTML="Afbeeldingformaat: 220px breed bij 220px hoog"
			document.getElementById("uploadBg").style.display="block"
			document.getElementById("uploadWindow").src="/modules/agenda/admin/upload/default.asp?id="+id
		} 		
	function closeagendaUpload()
		{
			document.documentElement.style.overflow=""		

			document.getElementById("uploadBg").style.display="none"
			document.getElementById("uploadWindow").src=""
		}		
function setagendaImage(path)
	{
		document.getElementById("agendaItemImage").style.background="url(/modules/agenda/upload/"+path+") center no-repeat"
		document.getElementById("agendaItemImageInput").value=path
	}	
function showagendaArchief()
{
	document.getElementById("agendaArchief").style.display="block"
}
