<!-- // Image Switcher
  function switchImage(imgSrc, anchorId, id, img, caption)
  {
    var imgLink	= "/showroom/popup.php?id=" + img;
    var photoId	= "photoId_" + id;
	var fullRes = "/design/images/pics/full/leeds_" + img + "_full.jpg";
	document.getElementById(anchorId).href=fullRes;
    //document.getElementById(fullpic).href=fullRes;
    document.getElementById(anchorId).target='largeImageWindow';
    document.getElementById(photoId).src=imgSrc;
	document.getElementById('caption').childNodes[0].nodeValue = caption;

  }
  
  // Popup Window
  function PopupPicture(anchorId, features)
  {
    var address;
    address = document.getElementById(anchorId).href;
    var windowName;
    windowName = document.getElementById(anchorId).target;
    var popUp = window.open(address, windowName, features);
    popUp.focus();
  }
-->