/* allow text area to have X ammount of characters */
function countText(){
	
	var oTextarea = document.contactform.cfbericht;
	if(oTextarea.value.length>2000){
			oTextarea.value = oTextarea.value.substring(0,2000);
	}
	
}
