function chkForms()
{
 if(document.joinform.name.value == "")  {
   alert("Bitte Ihren Namen eingeben!");
   document.joinform.name.focus();
   return false;
  }
 if(document.joinform.email.value == "") {
   alert("Bitte Ihre E-Mail-Adresse eingeben!");
   document.joinform.email.focus();
   return false;
  }
 if(document.joinform.name.value == "Dein Name")  {
   alert("Witzig ;-)\nBitte geb DEINEN Namen an und nicht Dein Name...");
   document.joinform.name.focus();
   return false;
  }
 if(document.joinform.email.value == "Deine Emailadresse") {
   alert("Witzig ;-)\nBitte geb DEINE Emailadresse an und nicht Deine Emailadresse...");
   document.joinform.email.focus();
   return false;
  }
 if(document.joinform.email.value.indexOf('@') == -1) {
   alert("Keine E-Mail-Adresse!");
   document.joinform.email.focus();
   return false;
  }
}

wmtt = null;
document.onmousemove = updateWMTT;

function updateWMTT(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (wmtt != null) {
		wmtt.style.left = (x - 340) + "px";
		wmtt.style.top 	= (y - 50) + "px";
	}
}

function showWMTT(id) {
	wmtt = document.getElementById(id);
	wmtt.style.display = "block"
}

function hideWMTT() {
	wmtt.style.display = "none";
}


function showArea(id) {
	if (document.getElementById) {
                 document.getElementById(id).style.display='inline';
	}
}

function hideArea(id) {
	if (document.getElementById) {
                 document.getElementById(id).style.display='none';
	}
}

