	//ubb en smileys adden
	
	function smiley() { 
    	return;       
	} 
	function Invoegen(Smiley) { 
		var edit; 
		var HuidigeTekst = document.forms.postbericht.bericht.value; 
		edit = HuidigeTekst+Smiley+" "; 
		document.forms.postbericht.bericht.value=edit; 
		document.forms.postbericht.bericht.focus(); 
		return; 
	}    

	//function caprefresh(UserId) {
	//	document.getElementById('antispam').src='captchaffs.php?gebruiker_id=' + UserId'&' + Math.floor(Math.random()* 999999 + 1 );
	//}
	
	var creload = 5;
	
	function reloadcaptcha(UserId) {
	
	  if(creload <= 0) {
		alert("U kan de afbeelding slechts 5 maal vernieuwen");
	  } else {
	    var img = document.getElementById("captchaffs");
		img.src = "captcha/captchaffs.php?gebruiker_id="+UserId+"&code="+Math.random();
	  }
	
	  creload=creload-1;
	}
