var seitenhoehe;
var bestellfenster;

function newWindow(session_id)
{
//  var url="https://bestellung.handwerk.schluetersche.de/indexa.htm?session_id="+session_id;
  var url="https://bestellung.schluetersche.de/indexa.htm?session_id="+session_id;
  var h = screen.height - 100;
  bestellfenster=window.open(url,"bestellfenster","status=yes,scrollbars,height="+h+",width=556");
  bestellfenster.focus();
}

function blockNoneBlock(id)
{
  if (document.getElementById(id).style.display == "none")
  {
    document.getElementById(id).style.display = "block";
  }
  else
  {
    document.getElementById(id).style.display = "none";
    id = id.replace("_files","");
    document.getElementById(id+"_files").style.display = "none";
  }
}