/*********************************************
 **  Page Name: RSS.js                      **
 **  Date Created: 04th May 2009            **
 **  Written By: Adrian Rose                **
 **  Copyright 2001-2010 Rose IT Solutions  **
 *********************************************/

function parseXML() {
	try { //Internet Explorer
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	}
	catch(e)
		{
		try { //Firefox, Mozilla, Opera, etc.
			xmlDoc=document.implementation.createDocument("","",null);
		}
		catch(e) {
			alert(e.message);
			return;
		}
	}
	
	xmlDoc.async=false;
	xmlDoc.load("MAS_Updates.xml");

	var x=xmlDoc.getElementsByTagName("item");
	var counter = x.length
	if (counter>5) {counter=5};
	for (i=0;i<counter;i++) {
		document.getElementById("rss").innerHTML += "<p><a href='" + x[i].getElementsByTagName("link")[0].childNodes[0].nodeValue + "'>" + x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue + "</a><br /><strong>" + x[i].getElementsByTagName("description")[0].childNodes[0].nodeValue + "</strong></p>"
	}
}