
      function empty(o){
        if(o.value=='Betreff' || o.value=='Ihre Mitteilung...' || o.value=='Ort' || o.value=='Telefon' || o.value=='eMail' || o.value=='Name') {
          o.value="";
		}

      }

      function testFill(o){
        if(o.value==''){
		  if (o.name=='Betreff') {
            o.value='Betreff';
            o.style.fontWeight="normal";
		  }
		  if (o.name=='Mitteilung') {
            o.value='Ihre Mitteilung...';
            o.style.fontWeight="normal";
		  }
		  if (o.name=='Stadt') {
	    o.value='Ort';
	    o.style.fontWeight="normal";
		  }
		  if (o.name=='Fon') {
	    o.value='Telefon';
	    o.style.fontWeight="normal";
		  }
		  if (o.name=='eMail') {
	    o.value='eMail';
	    o.style.fontWeight="normal";
		  }
		  if (o.name=='Name') {
	    o.value='Name';
	    o.style.fontWeight="normal";
		  }
		  
        }
	else
	{
		  if (o.name=='Betreff') {
            o.value!='Betreff';
            o.style.fontWeight="bold";
		  }
		  if (o.name=='Mitteilung') {
            o.value!='Ihre Mitteilung...';
            o.style.fontWeight="bold";
		  }
		  if (o.name=='Stadt') {
	    o.value!='Ort';
	    o.style.fontWeight="bold";
		  }
		  if (o.name=='Fon') {
	    o.value!='Telefon';
	    o.style.fontWeight="bold";
		  }
		  if (o.name=='eMail') {
	    o.value!='eMail';
	    o.style.fontWeight="bold";
		  }
		  if (o.name=='Name') {
	    o.value!='Name';
	    o.style.fontWeight="bold";
		  }	
	
	}


      }
