/* JS Popup */
var pop = null;

function popup(url,w,h) {
  w += 40; 
  h += 45;
  var args = 'width='+w+',height='+h+',resizable,scrollbars';
  pop = window.open(url,'',args);
  return (pop) ? false : true;
}

