
function jump(form) {
var myindex=form.menu.selectedIndex
if (form.menu.options[myindex].value != "0")
{
oeffne = window.open(form.menu.options[myindex].value,
target="_blank","menubars=no,location=no,toolbar=no,scrollbars=yes,resizable=yes,status=1,width=530,height=700");
oeffne.window.focus();
//target="_blank","fullscreen,scrollbars,toolbar");
}
}
onLoad=focus();

function openSearchresults() {
//
features = "menubars=no,location=no,toolbar=yes,scrollbars=no,resizable=yes,status=1";
w = 500;
h = 600;
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
//  settings += 'top=' + wint + ',';
  settings += 'top=0,';
  settings += 'left=' + winl + ',';
  settings += features;
mach = window.open('please_wait.htm','poop',settings);
mach.window.focus();
}

url= "";
ziel="";
function openNewPop(url,ziel,xi) {
//
xi2 = ""+xi+"0";

windowprops = "menubars=no,location=no,toolbar=no,scrollbars=yes,resizable=yes,status=0,width=530,height=700,top="+xi2+",left="+xi2+"";

mach = window.open(url,ziel,windowprops);
mach.window.focus();
}