// Helpfiles 

function adjust(aFile)
	{
		info=window.open(aFile,"MoreInfoBrowser","width=610,height=570,screenX=120,screenY=50,toolbar=0,scrollbars=1,menubar=0,resizable=1");
		info.focus();
	}


function help(aFile)
	{
		info=window.open(aFile,"MoreInfoKontakt","width=580,height=520,screenX=120,screenY=50,toolbar=0,scrollbars=1,menubar=0,resizable=0");
		info.focus();

	}


function pdf(aFile)
	{
		info=window.open(aFile,"Pfad","width=700,height=600,toolbar=0,scrollbars=1,menubar=0,resizable=1");
		info.focus();
	}


function Hochkomma(w)
{
  wort=w.value;

  if (wort == "")
    return true;

  if (wort.indexOf("'", 0) > -1)
  {
      alert ("Die Eingabe des Hochkomma Zeichens (') ist nicht erlaubt !");
      w.value="";

      w.focus();
      return false;
  }

  return true;
}



