function showPic (strpath) {
	var strfilepath = strpath.getAttribute("href");
	var placeholder = document.getElementById("placeholder");
	placeholder.setAttribute("src",strfilepath);

	var strtitle = strpath.getAttribute("title");
	var caption = document.getElementById("captionz");
	caption.firstChild.nodeValue = strtitle;
}


