	function fbs_click(u,t) { 
		url = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t);
		window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
		return false;
	}
	function doGetStoriesArchive(){
		news = makeRequest("inc/successStories.xml?" + Math.random(), "listStoriesArchive", "xmlfunc");
	}
		
	function listStoriesArchive(xml){
		xml = removeWhiteSpace(xml);
		
		newsCnt = "";
		for (var i = 0; i < xml.childNodes[0].childNodes.length; i++){

			row = xml.childNodes[0].childNodes[i];
			link = safeFileNameSS(row.childNodes[2].childNodes[0].nodeValue);

			newsCnt += "<div id='news_0"+i+"' style='width:550px; display:table;'>";
			newsCnt += "<a href='" + link + "'><img src='img/content/small_"+row.childNodes[1].childNodes[0].nodeValue+"' alt='"+row.childNodes[2].childNodes[0].nodeValue+"' style='border:1px #666666 solid; float:left; margin-right:10px; width:80px; height:80px;' /></a>";
			newsCnt += "<a href='" + link + "' class='titleOne_blue'>"+row.childNodes[2].childNodes[0].nodeValue+"</a><br />";
			newsCnt += "<br /><span class='dateSmall_lightBlue' style='font-size:10px;'>"+row.childNodes[0].childNodes[0].nodeValue+ "</span><br />";
			newsCnt += row.childNodes[3].childNodes[0].nodeValue;
			newsCnt += "<br /><a href='" + link + "' class='linkMore_blue'> ... read more</a>&nbsp;&nbsp;| ";
			fburl = "http://www.usaid.gov/kosovo/eng/" + link;
			newsCnt += "<a title='This link will take you to www.facebook.com. You will exit the USAID Web Server. Note: References obtained from this server do not constitute an endorsement or warranty.' rel='nofollow' class='linkMore2_fb' href='http://www.facebook.com/sharer.php?u=" + fburl + "'  onclick=\"return fbs_click('" + fburl + "','" + row.childNodes[2].childNodes[0].nodeValue + "')\" target='_blank'><img style='border:none; margin-left:-10px; margin-bottom:-3px;' src='img/system/connect_favicon.png' alt='This link will take you to www.facebook.com. You will exit the USAID Web Server. Note: References obtained from this server do not constitute an endorsement or warranty.' \>&nbsp;Share</a>";
			newsCnt += "</div>";
			
			if (i < xml.childNodes[0].childNodes.length){
				newsCnt += "<div style='height:15px;'></div>";
			}
		}	
		document.getElementById('storieList').innerHTML = newsCnt;
	}
