window.addEvent('domready', function(){
var list = $$('.news-list-morelink a');

list.each( function(element) {
var url = element.getProperty('href')+"news.xml";       
var newurl = "moobox('"+url+"');return false;";
element.onclick = function () {
	MOOdalBox.open( // case matters
		url, // the link URL
 		"", // the caption (link's title) - can be blank
 		"600 400" // width and height of the box - can be left blank
 		);
	 return false;}     
});

 });


 function moobox (url) {
   MOOdalBox.open( // case matters
   url, // the link URL
   "", // the caption (link's title) - can be blank
   "600 400" // width and height of the box - can be left blank
   );
 }