
function showPhoto(galleryId, photoId, name, description) 
{
	var image = top.document.getElementById("image");
	image.src = galleryId + "/" + "full-size/" + photoId + ".jpg";
	var descBox = top.document.getElementById("photoDescription");
	if (description != "") descBox.innerText = description;
	else descBox.innerText = " ";
}

function changeGallery(galleryPath, name, lang)
{
	var galleryId = galleryPath;
	index = galleryPath.lastIndexOf('/');
	if (index != -1) 
	{
		galleryId = galleryPath.substring(index + 1);
		galleryPath = galleryPath.substring(0, index + 1);
	}
	var titleElement = top.document.getElementById("galleryName");
	titleElement .innerText = name;
	var thumbnails = top.document.getElementById("thumbnails");
	//thumbnails.src = folderName + "/thumbnails.html";
	//thumbnails.src = "/wmst/http?request=getthumbnails&gallerylocation=http://localhost" + galleryPath + "/&id=" + galleryId + "&lang=" + lang;
	thumbnails.src = "/wmst/http?request=getthumbnails&gallerylocation=http://www.trninic.info" + galleryPath + "/&id=" + galleryId + "&lang=" + lang;
	var image = top.document.getElementById("image");
	image.src = "/images/empty.jpg";
	var description = top.document.getElementById("photoDescription");
	description.innerText = " ";
}