
function displayBulletin(text,type)
{

switch(type)
	{
	
		case 'list':	document.getElementById("bulletins-copy").innerHTML = text + "<h3><a href=\"/bulletins.html?url=http://scouting.org/RSS%20Feeds/JamboreeBulletins.aspx&item=listitem\">See All Bulletins</h3>";
		
						break;
		
		case 'item':	document.getElementById("copy").innerHTML = text;
		
						break;
	
	}

}


function displayNews(text,type)
{

switch(type)
	{
	
		case 'list':	document.getElementById("news-copy").innerHTML = text + "<h3><a href=\"/news.html?url=http://scouting.org/RSS%20Feeds/JamboreeNews.aspx&item=listitem\">See All News</h3>";
		
						break;
		
		case 'item':	document.getElementById("copy").innerHTML = text;
		
						break;
	
	}

}