function build_news(theURL) { //v2.0
  // bepaal nu het centrum
  var twin;
  
 
  features='scrollbars=auto,toolbars=no,status=no';
  
  w = 700;
  h = 400;

  mleft = (screen.width - w) / 2;
 	 mtop = (screen.height - h) / 2;

    features = features + ',top=' + mtop + ',left=' + mleft + ',width=' + w + ',height=' + h ;

 
 
  twin = window.open(theURL,"build_news",features);
  twin.focus();
}

function read_news(theURL) { //v2.0
  // bepaal nu het centrum
  var twin;
  
 
  features='scrollbars=yes,toolbars=no,status=no';
  
  w = 700;
  h = 400;

  mleft = (screen.width - w) / 2;
 	 mtop = (screen.height - h) / 2;

    features = features + ',top=' + mtop + ',left=' + mleft + ',width=' + w + ',height=' + h ;

 
 
  twin = window.open(theURL,"read_news",features);
  twin.focus();
}