// JavaScript Document


function getURL(welke){
if(welke == "luxe kamperen"){welke = "luxekamperen"}
if(welke == "gîtes"){welke = "gites"}
	document.location.href = welke + ".html"
}
 
function maakpopup(naam){
if(document.getElementById('photoShower') == null){
z=document.body.appendChild(document.createElement('div'));
z.style.fontFamily="Verdana";
z.style.fontSize="10px";
z.innerHTML='<img src=\"'+naam+'\">';
z.innerHTML+="<br>click op de foto om hem te laten verdwijnen"
z.id='photoShower';
z.style.position='absolute';
z.style.top = "20px";
z.style.backgroundColor = "ffffff";
z.style.padding = "6px";
z.onclick = function(){this.style.left='-10000px'}
}else{
document.getElementById('photoShower').style.left = '0px'
document.getElementById('photoShower').innerHTML = '<img src=\"'+naam+'\">';
document.getElementById('photoShower').innerHTML+="<br>click op de foto om hem te laten verdwijnen"
}
}

function doe(wie){
plaatje = wie.src.split('/');
naamPic =  "img/"+plaatje[plaatje.length-1].split('_klein')[0]+".jpg"
maakpopup(naamPic)
}
//-->
