function goto(seite)
	{document.location.href= seite;}
	
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function pruefeFelder()
{
if (window.document.forms[0].Firma.value == "" ||
   window.document.forms[0].Strasse.value == "" ||
   window.document.forms[0].PLZ.value == "" ||
   window.document.forms[0].Telefon.value == "" ||
   window.document.forms[0].Ort.value == "" ||
   window.document.forms[0].Land.value == "" ||
   window.document.forms[0].Name.value == "" ||
   window.document.forms[0].from.value == "" ||
   window.document.forms[0].Telefax.value == "")
   {
      alert("Bitte alle Pflichtfelder ausfüllen !");
   }
   else
   {
      window.document.forms[0].submit();
   }
}

function abschicken()
{
   window.document.forms[0].submit();
}
	
