function vulBallon(_url, _soort)
{
	
	if(_soort == 1)
	{
		var width = "210px";
		var height = "119px";
	}
	else
	{
		var width = "575px";
		var height = "69px";
	}
	var ballon = document.getElementById("fotoZoom");
	ballon.innerHTML = "<img src='"+_url+"' width='"+width+"' height='"+height+"'>";
	toonBallon(_soort);
}
function toonBallon(_soort){
	
	var ballon = document.getElementById("fotoZoom");
	var e 	= window.event;
	var d 	= (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
	
	var y 		= e.clientY + d.scrollTop+5;
	var x 		= e.clientX + d.scrollLeft-330;
	
	if(_soort == 1)
	{
		ballon.style.width = "210px";
		ballon.style.height = "119px";
	}
	else
	{
		ballon.style.width = "575px";
		ballon.style.height = "69px";
	}
	ballon.style.top=y+"px";
	ballon.style.left=x+"px";
	ballon.style.display="block";
}

function verbergBallon(){
	var ballon = document.getElementById("fotoZoom");
	ballon.style.display="none";
}
