// JavaScript Document
function openGeneric(path, w, h, scrollbar) {
  window.open(path, '_blank', 'top=100,left=100,location=0,menubar=0,resizable=0,toolbar=0,personalbar=0,status=0,scrollbars=' + scrollbar + ',width=' + w + ',height= ' + h + '');
}