function ShowPhoto()
{
	var imageName = obj.hdnPhotoName.value;
	var imageTitle = document.getElementById("PhotoTitle").innerHTML;
	openPictureWindow("photos/large_wm/"+imageName, 400, 300, imageTitle);
}

function ShowInfo(strInfo)
{
	document.getElementById("InfoTitle").innerHTML = strInfo;
	document.getElementById("InfoValue").innerHTML = arrInfo[strInfo];
}

function ShowSummary()
{
	if(!overLink)
	{
		document.getElementById("InfoTitle").innerHTML = "Summary";
		document.getElementById("InfoValue").innerHTML = arrInfo["Summary"];
	}
}

function AddToReport(id)
{
	self.location = "saved_reports.php?opt=add&id="+id;
}

function SavedReports()
{
	if(obj.hdnNumBuildings.value == 0)
	{
		alert("You have not added any building to Report so far!");
		return;
	}
	self.location = "saved_reports.php";
}

function VideoTour(id)
{
	stuff=window.open("video_tour.php?id="+id,"VideoTour","width=464,height=262,left=100,top=100");
	stuff.focus()
}
