function positionLogo(){
	elm = document.getElementById("kijk_ook");
	varElmHeight='45';
	/* afstand tot bovenkaant */
	varScrollTop=document.documentElement.scrollTop;
	/* hoogte afbeeldingen */
	varClientHeight=document.documentElement.clientHeight;
	elm.style.top=parseInt(varScrollTop)+parseInt(varClientHeight)-varElmHeight-20;
}

window.onload=function(){
	/* logo rechtsonder pagina */
	watermarkinterval=setInterval("positionLogo()",50);
}