function showNewsArticle(siteURL,newsid){
	//popUpWindow(siteURL+"newsarticle.php?id="+newsid, "", "", "", "400", "500");
	//var backurl = location.protocol+"//"+location.hostname+location.pathname;
	if(location.href.indexOf("?")!=-1){
		var backurl = location.href.substr(0,location.href.indexOf("?"));
	}else{
		var backurl = location.href;
	}
	location.href = siteURL+"newsarticle.php?id="+newsid+"&backurl="+backurl;
}