  function shineToggle(img)
  {
    if (img.src.indexOf('_on') > 0)
    {
      img.src = img.src.replace('_on', '_off');
    }
    else
    {
      img.src = img.src.replace('_off', '_on');
    }
    
    return true;
  }
  
  function OpenFloor(new_loc)
  {
    var option_string = "scrollbars=yes,toolbar=yes,resizable=yes";
    window.open(new_loc,"Floor",option_string);
  }

  function setImage(path)
  {
    document.getElementById('mainImg').src = path;
    return true;
  }
  
  function imagePop(img)
  {
    if (img.border == "2")
    {
      img.border = "0";
		  img.height = "75";
		  img.width = "112";
    }
    else
    {
      img.border = "2";
		  img.height = "71";
		  img.width = "108";
    }
  }
