// forms.js

function open_popup(name,width,height) {
    var newWindow = window.open(
      name,
      'popup',
      'width=' + width +',height=' + height +', scrollbars=yes, resizable=yes, toolbar=no, status=yes, menubar=no'
    );
}
