// BEISPIELE

/*

WindowOpen
	<a href="http://www.google.de" onclick="WindowOpen(this.href); return false">Neues Fenster</a>

*/

function go(URL)
{
	window.location.href = URL;
}

function WindowOpen (URL, NAME, RS, WIDTH, HEIGHT) {
	if (!NAME)
		NAME = "noname";
	if (!RS)
	{
		RS = "no";
	} else {
		RS = "yes";
	}
	if (!WIDTH)
		WIDTH=1000;
	if (!HEIGHT)
		HEIGHT=755;

	Window = window.open(URL, NAME, "width="+WIDTH+",height="+HEIGHT+",scrollbars=yes,resizable="+RS+",status=no");
	Window.focus();
}

function Question (TEXT, URL) {
	Check = confirm(TEXT);
	if (Check == true)
		go(URL)
}

function formularcheck() {
  for (i = 0; i < document.forms[0].elements.length; ++i)
    if (document.forms[0].elements[i].value == "") {
      alert("Es wurden nicht alle Felder ausgefuellt!");
      document.forms[0].elements[i].focus();
      return false;
    }
  return true;
}

