var win;

function glyph(runmode) {

     // existiert das Fenster?
     if (win != null && !win.closed) {
       //alert("exists");
     } else { // das Fenster exisitert noch nicht
       //alert("not exists");

       // das Fenster oeffnen
       win = window.open("","glyph","dependent=No,width=600,height=800,alwaysRaised=No,resizable=Yes,scrollbars=Yes,menubar=No,location=Yes,toolbar=Yes,screenX=150,screenY=150");
       win.moveTo(screen.availWidth-650,screen.availHeight-450); // IE doesn't understand screenX
     }

     win.location.href = runmode;
     win.focus();

}

function SelectAll(val) {
  for (var i = 0; i < document.selection.elements.length; i++) {
    if(document.selection.elements[i].type == 'checkbox') {
      document.selection.elements[i].checked = !(document.selection.elements[i].checked);
      document.selection.elements[i].checked = val;
    }
  }

}


