function ajaxLoader(url,id) { 
		if (document.getElementById) { 
                    var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new 
		XMLHttpRequest(); 
		document.getElementById(id).innerHTML = '<center><img src="gbr/spinner.gif" alt="*" width="18" height="18" class="absmid"> Loading Page...</center>';
               } 
               if (x) { 
                    x.onreadystatechange = function() { 
                         if (x.readyState == 4 && x.status == 200) { 
                              el = document.getElementById(id); 
                              el.innerHTML = x.responseText; 
                         } 
                    } 
                    x.open("GET", url, true); 
                    x.send(null); 
               } 
          } 
function stats(url,id) { 
		if (document.getElementById) { 
                    var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new 
		XMLHttpRequest(); 
		document.getElementById(id).innerHTML = '<img src="gbr/ajax-loader.gif" alt="..." width="18" height="18" class="absmid">';
               } 
               if (x) { 
                    x.onreadystatechange = function() { 
                         if (x.readyState == 4 && x.status == 200) { 
                              el = document.getElementById(id); 
                              el.innerHTML = x.responseText; 
                         } 
                    } 
                    x.open("GET", url, true); 
                    x.send(null); 
               } 
          } 

