// all my javascript functions for mstv.info
// dear michael, do not edit! thank you
// written by Hannah F. Liesong, blue@liesong.de
// feel free to copy, use and modify, if you want
// but if you like something of that, drop me a line...

function chkFormular()
  {
   if(document.forms[0].Name.value == "")
    {
     alert("Geben Sie bitte Ihren Namen ein!");
     document.forms[0].Name.focus();
     return false;
    }
   if(document.forms[0].eMail.value == "")
    {
     alert("Ohne eMail-Adresse koennen wir Ihnen nicht antworten!");
     document.forms[0].eMail.focus();
     return false;
    }
   if(document.forms[0].eMail.value.indexOf('@') == -1)
    {
     alert("Das ist keine eMail-Adresse!");
     document.forms[0].eMail.focus();
     return false;
    }
  }
  
  
  function popUp(strURL,strType,strHeight,strWidth)
	{
	var strOptions="";
	if (strType=="console") strOptions="resizable, scrollbars=auto, height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	window.open(strURL, 'newWin', strOptions);
	}
