// JavaScript Document

function zeigeBild( bild , breite , hoehe )
{
	document.getElementById('ref_thumb').src = bild;
	document.getElementById('ref_thumb').width = breite;
	document.getElementById('ref_thumb').height = hoehe;
}

function versteckeBild()
{
	document.getElementById('ref_thumb').src = "../bilder/leer.gif";
	document.getElementById('ref_thumb').width = 1;
	document.getElementById('ref_thumb').height = 1;

}


function trim(s)
{
 while (s.substring(0,1) == ' ')
 {
   s = s.substring(1,s.length);
 }
 while (s.substring(s.length-1,s.length) == ' ')
 {
   s = s.substring(0,s.length-1);
 }
 return s;
}


function checkFormular()
{
  return true;
}
