//smiley
function putStr(text) {
	bericht = document.getElementById('bericht');
	bericht.value=bericht.value + ' ' + text;
	bericht.focus();
}

//popup
var newwindow;
function openwindow(url,w,h)
{
  newwindow=window.open(url,'popdetails','height='+h+',width='+w+',resizable=no,scrollbars=no,status=no');
  if (window.focus) {newwindow.focus()}
}