
/**
*/
function loadDisplaySet (caption, hidePhotos) {

	if (hidePhotos)
	{
		document.getElementById('photos').className = "hiddenSection";
	}

	<!-- Effect.Grow("portrait_description", {duration:1.0}); -->
		
	new Ajax.Updater("portrait_description", caption, { 
		 onFailure : function(resp) { 
		   alert("Error loading description."); 
		 },
		 method : "get"
	 });

	return false;
}


