// JavaScript Document

function showImg(img,omschrijving)

	{
		document.documentElement.style.overflow="hidden"

		document.getElementById("imgPopUp").style.display = "block"
		document.getElementById("imgPopUp").innerHTML = "<div onclick='hideImg()'>KLIK OM TE SLUITEN<br /><img src='/wsImg.asp?img="+img+"&amp;m=f' alt='"+omschrijving+"'></div>"		


	}

function hideImg()

	{
		document.documentElement.style.overflow="auto"

		document.getElementById("imgPopUp").style.display = "none"
		document.getElementById("imgPopUp").innerHTML = ""		

	}


