	function doGetNews(){
		news = makeRequest("inc/news.xml?" + Math.random(), "listNews", "xmlfunc");
	}
	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 listNews(xml, limit, foto){ 
		xml = removeWhiteSpace(xml);
		newsCnt = "";
		for (var i = 0; i < 3; i++){
			row = xml.childNodes[0].childNodes[i];
			// categoryLabel -> row.childNodes[2].childNodes[0].nodeValue
			// Post Category
			newsCnt += "<div id='news_0"+i+"' style='width:630px; height:95px;'>";
			newsCnt += "<a href='news_more.html?newsId="+i+"'><img src='img/content/"+row.childNodes[3].childNodes[0].nodeValue+"' alt='"+row.childNodes[4].childNodes[0].nodeValue+"' style='border:1px #666666 solid; float:left; width:95px; margin-right:10px;' /></a>";
			newsCnt += "<a href='news_more.html?newsId="+i+"' class='titleMain_blue'>"+row.childNodes[4].childNodes[0].nodeValue+"</a><br />";
			newsCnt += "<span class='dateSmall_grey'>"+row.childNodes[0].childNodes[0].nodeValue+"</span><br />";
			newsCnt += row.childNodes[5].childNodes[0].nodeValue;
			newsCnt += "<div><a href='news_more.html?newsId="+i+"' class='linkMore2_red'>Lexo më tutje</a>";
			newsCnt += "<span class='linkMore2_red'> &nbsp; | &nbsp; </span>";
			titleStriped = row.childNodes[4].childNodes[0].nodeValue;
			//titleStriped = titleStriped.toLowerCase();
			titleStriped = titleToUrl(titleStriped);
			fburl = "http://www.usaid.gov/kosovo/alb/fb/"  + titleStriped + ".html";
			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[4].childNodes[0].nodeValue + "')\" target='_blank'><img style='border:none; margin-left:-15px; 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;Shpërndaje</a>";
			newsCnt += "<a href='news_more.html?newsId="+i+"' class='linkMore2_red'></a>";
			newsCnt += "</div>";
			newsCnt += "<div class='linkMore2_red' style='float:right;'>Kategoria e postimit: <a href='archive.html?"+row.childNodes[2].childNodes[0].nodeValue+"' class='linkMore2_red'><strong>"+row.childNodes[2].childNodes[0].nodeValue+"</strong></a></div>";
			newsCnt += "</div>";			
			if (i < 3){
				newsCnt += "<div style='height:13px; width:630px; '><img src='img/system/spacer.gif' alt='' /></div>";
			}
						
		}
		document.getElementById('usaidKosovo_news').innerHTML = newsCnt;
	}
