// NOTE: the global HTMLDir must be set for these routines to work

function PopBugReportWindow(Page) {
  aPopUp=window.open('','_BugReport','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=520,height=500')
  aPopUp.focus()
  aPopUp.location='bugSubmit.php?Page=' + Page
}

function BugMsg(URL,Op,Bug,UserID) {
  aPopUp=window.open('','_BugMsg','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=520,height=400')
  aPopUp.focus()
  aPopUp.location='bugMsg.php?LastURL=' + URL + '&Op=' + Op + '&Bug=' + Bug + '&UserID=' + UserID
}

