// JavaScript Document

function showImg(img,omschrijving)

	{
		document.documentElement.style.overflow="hidden"

		$("#imgPopUp").html("<div onclick='hideImg()'>KLIK OM TE SLUITEN<br /><img src='/modules/webshop/wsImg.aspx?img="+img+"&amp;m=f' alt='"+omschrijving+"'></div>")
		$("#imgPopUp").fadeIn("slow")



	}

function popUpYoutube(html)

	{
		document.documentElement.style.overflow="hidden"


		$("#imgPopUp").html("<div onclick='hideImg()'>KLIK OM TE SLUITEN<br /><iframe title='YouTube video player' width='1000' height='500' src='http://www.youtube.com/embed/"+html+"' frameborder='0' allowfullscreen></iframe></div>")
		$("#imgPopUp").fadeIn("slow")

	}


function hideImg()

	{
		document.documentElement.style.overflow="auto"

		$("#imgPopUp").fadeOut("slow",function(){
		$("#imgPopUp").html("")

		})
	}


