var Client="The ULU Factory";
var photoTitle="";

function PopupWindow(photoName, photoWidth, photoHeight, photoCaption)
{
 	ClosePopup()
		
 	photoTitle=Client;
	
 	if (photoCaption != "")
  		photoTitle=photoTitle + "%20-%20" + photoCaption

	var URL="http://www.theulufactory.com/includes/get_photo.asp?Photo=" + photoName + "&Width=" + photoWidth + "&Height=" + photoHeight + "&Title=" + photoTitle;
 	var windowWidth=parseInt(photoWidth) + 30;
 	var windowHeight=parseInt(photoHeight) + 30;
	
	
	features = "toolbar=false,location=false,directories=false,status=false,menubar=false,scrollbars=no,resizeable=false";
	features += ",width=" + windowWidth + ",height=" + windowHeight + ",top=15,left=15";
		
	winName = "photo"
	photo = window.open(URL, winName, features);	
	
    //photo=window.open(URL, "PhotoWindow", ",width=" + windowWidth + ",height=" + windowHeight + ",toolbars=no,top=15,left=15");
}

function ClosePopup()
{
 	if (window.photo && !(window.photo.closed))
  		window.photo.close();
}