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