function showPic(whichpic, projectid) { 
	var source = whichpic.getAttribute("sendUrl"); // get what's inside sendURL
	//window.alert(source);
	//window.alert("placeholder"+projectid);
	var placeholder = document.getElementById("placeholder"+projectid); 
	placeholder.setAttribute("src",source); 
} 

