<!--
		var KartenWin	= null
		var winparam	= null
		var Y			= 0
		var X			= 0

		function FormWin(marke, breite, hoehe)
		{
			X = breite
			Y = hoehe
			
			if (screen.availHeight < hoehe)
			{
				hoehe = screen.availHeight 
			}
			
			if (screen.availWidth < breite)
			{
				breite = screen.availWidth
			}
			
			if (KartenWin != null)
			{
				if (!KartenWin.closed)
		        {
					KartenWin.location.href = marke
			        KartenWin.focus()
		        }
			    else
		        {
					KartenWin	= null
					winparam	=  "toolbar=no,status=no,locationbar=no,menubar=no,resizable=no,height=" + Y + ",width=" + X
					KartenWin	= window.open(marke,'fenster', "toolbar=no,location=no,status=no, scrollbars,resizable,menubar=no")
					KartenWin.resizeTo(X,Y)
	     		}
   			}
			else
   			{
				winparam	= "toolbar=no,status=no,locationbar=no,menubar=no,resizable=no,height=" + Y + ",width=" + X
				KartenWin	= window.open(marke,'fenster', "toolbar=no,location=no,status=no, scrollbars,resizable,menubar=no")
				KartenWin.resizeTo(X,Y)
   			}

            parent.frames[1].history.back(-1);
			// return(0);
	}

function CheckEMail(s)
{
 var a = false;
 var res = false;
 if(typeof(RegExp) == 'function')
 {
  var b = new RegExp('abc');
  if(b.test('abc') == true){a = true;}
  }

 if(a == true)
 {
  reg = new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)'+
                   '(\\@)([a-zA-Z0-9\\-\\.]+)'+
                   '(\\.)([a-zA-Z]{2,4})$');
  res = (reg.test(s));
 }
 else
 {
  res = (s.search('@') >= 1 &&
         s.lastIndexOf('.') > s.search('@') &&
         s.lastIndexOf('.') >= s.length-5)
 }
 return(res);
}

function redirect(x) {
  if(x == "foo") {
    document.forms[1].reset();
    return;
  } else {
    top.location.href = x;
    document.forms[1].reset();
  }
}

function go(fenstername,breite,hoehe)
{
    var attribute = "',toolbar=no,status=no,menubar=no,width=" + breite + " height=" + hoehe + "'"

	if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none")
	{
		goto = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
		window.open(goto, fenstername,attribute);
	}
}




//-->

