var Client="Lifestyle Lounge";
var photoTitle="";
function showLargePhoto(photoName, photoWidth, photoHeight, photoCaption)
{
photoTitle=Client;
 if (photoCaption != "")
  photoTitle=photoTitle + "%20-%20" + photoCaption
 if (window.photo && !(window.photo.closed))
  window.photo.close();
    var URL="../showphoto.asp?Photo=" + photoName + "&Width=" + photoWidth + "&Height=" + photoHeight + "&Caption=" + photoCaption + "&photoTitle="+ photoTitle;
 var windowWidth=parseInt(photoWidth) + 30;
 var windowHeight=parseInt(photoHeight) + 30;
    photo=window.open(URL, "PhotoWindow", "width=" + windowWidth + ",height=" + windowHeight + ",toolbars=no,top=0,left=0");

}