function openDialog(url,target,height,width)
{
  var h = window.screen.height * 0.55;
  var w = "660";
  var t = "dialog";
  if (height) h = height;
  if (width)  w = width;
  if (target) t = target;
  style = "status=yes,toolbar=no,resizable=yes,width="+w+",height="+h+",scrollbars";
  newWindow = window.open(url, t, style);
  if (! newWindow.opener) newWindow.opener = self;
}
function openHelp(sContext,sAnchor)
{
  sParameter = sContext;
  if(sAnchor != 'undefined')
  {
    sParameter += "," +  sAnchor;
  }
  var h = window.screen.height*0.55;
  var w = "660";
  style = "status=yes,toolbar=no,scrollbars=yes,resizable=yes,width="+w+",height="+h;
  window.open('/;internal&action=dialog.help.action&Parameter=' + sParameter,'help',style);
}
//ths251000 --> Entfernen pagescript.js ( Zusammenfassung )
function go_to_href(sel)
{
  var the_option = sel.options[sel.selectedIndex].value;
  if (the_option=="dummy")
    sel.options[0].selected=true;
   else
    window.location.href=the_option;
}
function openWebHelp(openUrl, target, height, width)
{
  var h = "200";
  var w = "200";
  var t = "dialog";
  if (height) h = height;
  if (width)  w = width;
  if (target) t = target;
  style = "status=no,toolbar=no,resizable=no,width="+w+",height="+h+"menubar=no";
  window.open(openUrl, t, style);
}

