// oeffnet ein Fenster
var f1;

function OpenWindow (url) {
  f1 = open(url,"Menue");
  setTimeout("f1.focus();",500);
}

