function OpenScreenShot(index) {

  var hres = screen.availWidth;
  var vres = screen.availHeight;

  var hsize = 555;
  var vsize = 455;

  var options =
    'toolbar=no,' +
    'location=no,' +
    'directories=no,' +
    'status=no,' +
    'menubar=no,' +
    'scrollbars=yes,' +
    'resizable=yes,' +
    'width=' + hsize + ',' +
    'height=' + vsize + ',' +
    'left='  + ((hres - hsize - 10) * 0.5) + ',' +
    'top=' + ((vres - vsize - 30) * 0.5);
    
    

  var wnd  = window.open('src/' + index,'ScreenShot',options);
  document.title("Notepad2 Screenshot");
  wnd.focus();
}

function OpenOthers(index) {

  var hres = screen.availWidth;
  var vres = screen.availHeight;

  var hsize = 755;
  var vsize = 555;

  var options =
    'toolbar=no,' +
    'location=no,' +
    'directories=no,' +
    'status=no,' +
    'menubar=no,' +
    'scrollbars=yes,' +
    'resizable=yes,' +
    'width=' + hsize + ',' +
    'height=' + vsize + ',' +
    'left='  + ((hres - hsize - 10) * 0.5) + ',' +
    'top=' + ((vres - vsize - 30) * 0.5);
    
    

  var wnd  = window.open(index,'Others',options);
  document.title("Weitere Übersetzungen");
  wnd.focus();
}

function mailcrypt() {
var emailarray=[100,101,118,105,108,105,115,105,111,110,64,103,109,97,105,108,46,99,111,109];
var mailcrypt=''; 
for (var i=0; i<emailarray.length; i++);
 mailcrypt+=String.fromCharCode(emailarray[i]);
}
