function positionLogo(){
	elm = document.getElementById("watermarklogo");
	varElmHeight='47';
	/* afstand tot bovenkaant */
	varScrollTop=document.body.scrollTop;
	/* hoogte afbeeldingen */
	varClientHeight=document.body.clientHeight;
	elm.style.top=parseInt(varScrollTop)+parseInt(varClientHeight)-varElmHeight;
}

window.onload=function(){
	/* logo rechtsboven pagina */
	varClientWidth = document.body.clientWidth;
	if (varClientWidth < 1010) {
		document.getElementById("logo_boven").style.left=parseInt(varClientWidth)-160;
	}
	/* logo rechtsonder pagina */
	watermarkinterval=setInterval("positionLogo()",50);
}

window.onresize=function(){
	/* logo rechtsboven pagina */
	varClientWidth = document.body.clientWidth;
	document.getElementById("logo_boven").style.left=parseInt(varClientWidth)-160;
}