function get_song_list() {

   var params = 'rand=' + Math.random();

   try {
     var req = new Ajax.Request('http://www.bluestar.ie/cgi-bin/nowplaying.pl',{
			onSuccess : function(r) { show_song_list(r) },
			onFailure: function(r) { song_list_fail(r) },
			method : "post",
			parameters : params
	       	});
      	} 
		catch(e) {
		   return false;

        }

}

function show_song_list(r) {

   var song_list = r.responseText;

   document.getElementById('song_list').innerHTML = song_list;
}

function song_list_fail(r) {

   alert('Fail: '+r.responseText);
}

get_song_list();