<!--
function windowOpen(url,winname,attributes) {
	var ts = new Date().getTime().toString();
	if (winname == '') winname = 'popup' + ts;
	if (popupWindow != null && popupWindow.closed == false) popupWindow.close();
	popupWindow = window.open(url, winname, attributes);
	popupWindow.focus();
}
var popupWindow = null;

function surfto(form) {
  var myindex=form.dest.selectedIndex;

  if(form.dest.options[myindex].value!="")
    location = form.dest.options[myindex].value;
}

function surfto2(form, pull) {
  var myindex=document.forms[form].elements[pull].selectedIndex;

  if(document.forms[form].elements[pull].options[myindex].value!="")  {
    var test = document.forms[form].elements[pull].options[myindex].value;
      parent.location = test;
  }
}

function Link(url){
  opener.location.href=url;
}

function fensterSchliessen() {
  self.close();
}
//-->