function attach_privacy_icon(primaryElement, spacerElement){
	var privacy_text = "This project is protected by Non-Disclosure terms, so, we can't be more specific at this time.";
	
	document.write("<a href=\"\" onmouseover=\"showElements("+primaryElement+"); hideElements("+spacerElement+")\" onmouseout=\"hideElements("+primaryElement+"); showElements("+spacerElement+")\"><img src=\"/assets/images/NDALock.gif\" border=\"0\" alt=\"NDA\" width=\"9\" height=\"11\" /></a></div>");
	document.write("<div class=\"privacy_credit_spacer\" id="+spacerElement+">"+privacy_text+"</div>");
	document.write("<div class=\"privacy_credit\" id="+primaryElement+" style=\"display:none;\">"+privacy_text+"</div>");
}