
/* - HEPB_JS.js - */
function hepb_test() {
  alert("hepb_test");
}

function hepb_media_open(url, player, w, h) {
  var specs = 'width=www, height=hhh, location=no, menubar=no, status=no, toolbar=no, scrollbars=no, menubar=no';
  specs = specs.replace("www", w);
  specs = specs.replace("hhh", h);
  window.open(url, player, specs);
  return 0;
}


