<!--
function nieuwVenster(adres) {
window.open(adres,'','width=900,height=600,toolbar=no,location=no,menubar=no,status=no,Resizable=yes,scrollbars=yes');
}

function tmt_winLaunch(theURL,winName,targetName,features) { 
eval(winName+"=window.open('"+theURL+"','"+targetName+"','"+features+"')")
}
/* dit script plaatst nieuw window in het midden van het scherm + houdt het scherm in firefox op de voorgrond */

function launchCenter(url, name, height, width) 
 {
  var str = "scrollbars=yes, height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width + ",alwaysLowered=0,alwaysRaised=1,channelmode=0,dependent=1,directories=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0";
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  return window.open(url, name, str); 
}
// -->

