function whatsnewinit(){
	var url = "../data.xml";
	var http = new JKL.ParseXML( url );
	var xml = http.parse();

	var s = '<table border="0" cellpadding="0" cellspacing="5" summary="What\'s New">';


//	for(i in xml.data.item){
	for(i = 0; i < 5; i++){
		var _date = xml.data.item[i].date;
		var _title = xml.data.item[i].title;
		var _url = xml.data.item[i].url;

		s += '<tr><td valign="top">';
		if(_date){
			s+= '<img src="images/tri.gif" width="8" height="9" alt="" />' + _date + '';
		}
		s += '</td><td>';
		if(_url){
			s+= '<a href="' + _url + '" target="_blank">';
		}
		s += _title;
		if(_url){
			s += '</a>';
		}
		s += '</td></tr>';
	}

	s += '</table>';

	if(document.getElementById("xmlArea")){
		document.getElementById("xmlArea").innerHTML = s;
	}
}


