function openLocation(locationID) {
  var popurl="../../content/popups/location.php?locationID=" + locationID;
  winpops=window.open(popurl,"locationPopup","width=500,height=450,screenX=400,screenY=400,top=200,left=200,scrollbars=1");
  winpops.focus();
}

function openImageFromForm(form_object)
{
  var windowname = 'popup_image';
  winpops=window.open('',windowname,"width=600,height=460,screenX=400,screenY=400,top=200,left=200,scrollbars=1");
  form_object.target=windowname; 
  winpops.focus();
}

function openGlossary(glossaryID, height)
{
  height = (height*21)+120;
  if (height>480) {height=480;}
  var popurl="../../content/popups/glossary.php?glossaryID=" + glossaryID;
  winpops=window.open(popurl,"glossaryPopup","width=500,height="+height+",screenX=400,screenY=400,top=200,left=200,scrollbars=1");
  winpops.focus();
}