// Button Rollover Code
function rollOverNew(imgID, imgName) {
	document.getElementById(imgID).setAttribute('src', imgName);
}

function pg(gallery, photo) {
  var winwidth = 1000;
  var winheight = 650;
  var top = (screen.availHeight - winheight - 29) / 2;
  var left = (screen.availWidth - winwidth - 10) / 2;

  var winopt = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,resizable=0,width=" + winwidth + ",height=" + winheight + ",left=" + left + ",top=" + top;

  //alert(winopt);
  newwin = window.open('/venuehire/photo_gallery/gallery?sg=' + gallery + '&sp=' + photo,'photoGallery',winopt);
}

function chgLabel(btnId) {
  document.getElementById(btnId).innerHTML = '<a href="#">Submitting...</a>';
}
