function checkTextNotEmpty(object) {
  if(object.value == '')
    {
      alert("Bitte Text eingeben");
      return false;
    }
  return true;
}
function mailit (dom, addr, subj) {
    var ma = 'mailto:'+addr+'@'+dom+'.de?subject='+subj;
    window.open(ma);
    return;
}
function mailito (dom, addr, subj) {
    var ma = 'mailto:'+addr+'@'+dom+'?subject='+subj;
    window.open(ma);
    return;
}
function gotowantedpage(dom) {
	var select = document.getElementsByName("iwantto")[0].options;
	var target = dom+select[select.selectedIndex].value;
	document.location.href=target;
}
