function showImg(id){
	document.getElementById('headimg').src='/image.php?image='+id+'&width=332';
}

function showImg1(id){
	document.getElementById('headimg').src='/image.php?image='+id+'&width=332&map=2';
}

function fontSizer(procent){
	document.getElementById('optA').style.fontSize=procent+'%';
}

var xmlhttp = null;
    
if(window.XMLHttpRequest){
    xmlhttp = new XMLHttpRequest();
}else{
    try{
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }catch(e){
        window.alert("Uw browser ondersteunt het XMLHttpRequest object niet!");
    }
}


function meldPagina(adres){
 	var adres1 = "/&/"+adres;
 	adres1 = adres1.replace(/&/g, '@');
	document.getElementById('meldpage').innerHTML = '<img src="/images/loader-wit.gif" />';
    xmlhttp.open("GET", "/includes/melden.php?url=" + adres1 + "&rand=" + Math.random(), true);
    xmlhttp.onreadystatechange = showMelding;
    xmlhttp.send('');		
}
function showMelding(){
    if(xmlhttp.readyState == 4){
        document.getElementById('meldpage').innerHTML = xmlhttp.responseText;
    }
}

function showBoek(){
 	fotoboek = document.getElementById('cImage');
	if(fotoboek.style.display == 'none'){
		fotoboek.style.display = 'block';
	}else{
		fotoboek.style.display = 'none';
	}
}