 function WindowPopUp(URI, windowName, width) {
  var x = width || 650;
  var s = window.open(URI, windowName, "width="+ x +", height=640,scrollbars=yes,toolbar=yes,resizable=yes");
  s.focus();
 }