function WindowClose()
{
  // Routine to close the current window...
  close();
  return;
}


function WindowOpen(sURL)
{
  // Routine to show a window from a link within the help page
  // based on the sURL...
  window.open (sURL,'', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=600,top=0,left=0');
}

function WindowOpen2(sURL, iWidth, iHeight)
{
  // Routine to show a window from a link within the help page
  // based on the sURL...
  window.open (sURL,'', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + iWidth + ',height=' + iHeight + ',top=0,left=0');
}

function showImage(sURL, sBNID, sOID)
{
  // Routine to show a window from a link within the help page
  // based on the sURL...
  sURL += "?BNID=" + sBNID + "&OID=" + sOID
  window.open (sURL,'', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=600,top=0,left=0');
}
