	
	var xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
	xmlDoc.async="false"
	xmlDoc.load("news.xml")

	nodes=xmlDoc.documentElement.childNodes
	
	function disp(a)
	{
		
		if (a.id == "NewsHead1")		
		{
			a.innerText = nodes.item(0).text
		}
		else if (a.id == "FlashText1")	
		{
			a.innerText = nodes.item(1).text	
		}
		else if (a.id == "Link1")	
		{
			a.href = nodes.item(3).text	
		}
		else if (a.id == "NewsHead2")		
		{
			a.innerText = nodes.item(4).text
		}
		else if (a.id == "FlashText2")	
		{
			a.innerText = nodes.item(5).text	
		}
		else if (a.id == "Link2")	
		{
			a.href = nodes.item(7).text	
		}

		
	}
	
	
	
	