// JavaScript Document
function janee(bericht, url){
	if(confirm(bericht)){
		location.href = url;
	}
}

function addSmilie(code) {
     document.formulier.bericht.value+= ' '+ code +' ';
     document.formulier.bericht.focus();
}

function popup(w,h,p){
	var left = (screen.availWidth/2) - (w/2);
	var top = (screen.availHeight/2) - (h/2);
	window.open(p,'Insert','width='+w+',height='+h+',scrollbars=0,status=0, left='+left+', top='+top);
}

function blank(url,naam){
	 window.open (url,naam);
}