function initOverLabels () {
  if (!document.getElementById) return;      
  var labels, id, field;
  // Set focus and blur handlers to hide and show 
  // LABELs with 'overlabel' class names.
  labels = document.getElementsByTagName('label');
  for (var i = 0; i < labels.length; i++) {
    
    if (labels[i].className == 'overlabel') {
      // Skip labels that do not have a named association
      // with another field.
      id = labels[i].htmlFor || labels[i].getAttribute('for');
      if (!id || !(field = document.getElementById(id))) {
        continue;
      }
      // Change the applied class to hover the label 
      // over the form field.
      labels[i].className = 'overlabel-apply';
      // Hide any fields having an initial value.
      if (field.value !== '') {
        hideLabel(field.getAttribute('id'), true);
      }
      // Set handlers to show and hide labels.
      field.onfocus = function () {
        hideLabel(this.getAttribute('id'), true);
      };
      field.onblur = function () {
        if (this.value === '') {
          hideLabel(this.getAttribute('id'), false);
        }
      };
      // Handle clicks to LABEL elements (for Safari).
      labels[i].onclick = function () {
        var id, field;
        id = this.getAttribute('for');
        if (id && (field = document.getElementById(id))) {
          field.focus();
        }
      };
    }
  }
};
function hideLabel (field_id, hide) {
  var field_for;
  var labels = document.getElementsByTagName('label');
  for (var i = 0; i < labels.length; i++) {
    field_for = labels[i].htmlFor || labels[i].getAttribute('for');
    if (field_for == field_id) {
      labels[i].style.textIndent = (hide) ? '-1000px' : '0px';
      return true;
    }
  }
}
window.onload = function () {
  setTimeout(initOverLabels, 50);
};
 
function newImage( imgSrc ){
 var imgName = new Image();
 imgName.src = imgSrc;
 return imgName;
}
function change( imgName, imgLocation )
{
 document[imgName].src = imgLocation ;
}
var preloadFlag = false;
function loadImages()
{
 if (document.images)
 {
 // **** Edit this list to include rollover state images ****
 // **** Example: aboutus_over = newImage( "images/aboutus-over.gif" );
 thumb1 = newImage("images/artists/thumbs/fpo_ThumbnailImage-o.jpg");
 preloadFlag = true;
 }
}
function popUp(sURL, theWidth, theHeight) {
            //   Gets screen size
            var iPageWidth, iPageHeight;
            if (self.innerHeight) {
                        iPageWidth = self.innerWidth;
                        iPageHeight = self.innerHeight;
            }
            else if (document.all && document.getElementById) {
                        iPageWidth = screen.availWidth;
                        iPageHeight = screen.availHeight;
            }
            else if (document.body) {
                        iPageWidth = document.body.clientWidth;
                        iPageHeight = document.body.clientHeight;
            }
leftSideOfPopup = (iPageWidth - theWidth)/2;
topSideOfPopup = (iPageHeight - theHeight)/2;
features = "toolbar=0,width=" + theWidth + ",height=" + theHeight + ",status=0,scrollbars=0,resize=0,menubar=0,location=0,directories=0,screenX=" + leftSideOfPopup + ",left=" + leftSideOfPopup + ",screenY=" + topSideOfPopup + ",top=" + topSideOfPopup;   <!-- One line and no spaces  -->
            theWindow = window.open(sURL, "", features);
            document.getElementById('FloorPlan').style.display = 'block';
}