function positionContent() {
  var pC= document.getElementById("bgContent");
  var pLeft = (document.body.clientWidth / 2) - (pC.clientWidth / 2);
  if (pLeft < 0) {
    pLeft = 0;
  }
  pC.style.left = pLeft;
  pC.style.marginLeft = "0px";
}

function hiLite(src){
  src.className = 'navHilite';
}

function loLite(src){
  src.className = 'navLink';
}

function deleteEvent(id) {
  if (confirm("Delete event " + id)) {
    document.location = 'deleteEvent.php?id='+id;
  }
}

function deleteImage(id) {
  if (confirm("Delete image " + id)) {
    document.location = 'deletePhoto.php?id='+id;
  }
}

function resizePhoto(src){
  var srcWidth = src.width;
  var srcHeight = src.height;
  src.style.width = srcWidth / 2;
  src.style.height = srcHeight / 2;
  src.parentNode.style.width = (srcWidth / 2) + 1;
  src.parentNode.style.height = (srcHeight / 2) + 1;
  src.parentNode.style.visibility = "visible";
}

window.onload = positionContent;
window.onresize = positionContent;
ol_bgcolor = '#303030';
ol_fgcolor = '#c0c0c0';
ol_shadowopacity = 75;
