
 
/*  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   Keys Auctions Ajax Library
   SVN Revision: xx
   
   These functions are largely based on the mozilla tutorial at: 
   http://developer.mozilla.org/en/docs/AJAX:Getting_Started
   
   Customised a little bit to do generic page into div type stuff. 
   Its quite straight forward, go to the URL and learn it for yourself!
     
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */  

 var http_request = false;
 var tagtoprint;


     function makeRequest(url) {

        http_request = false;

        if (window.XMLHttpRequest) { // Mozilla, Safari,...
            http_request = new XMLHttpRequest();
            if (http_request.overrideMimeType) {
                http_request.overrideMimeType('text/xml');
                // See note below about this line
            }
        } else if (window.ActiveXObject) { // IE
            try {
                http_request = new ActiveXObject("Msxml2.XMLHTTP");
            } catch (e) {
                try {
                    http_request = new ActiveXObject("Microsoft.XMLHTTP");
                } catch (e) {}
            }
        }

        if (!http_request) {
            alert('Giving up :( Cannot create an XMLHTTP instance');
            return false;
        }

        http_request.onreadystatechange = alertContents;
        http_request.open('GET', url, true);
        http_request.send(null);

    }

    function alertContents()
    {
        if (http_request.readyState == 4)
        {
            if (http_request.status == 200)
            {
                 //tagtoprint.firstChild.nodeValue=http_request.responseText.toString();
                 tagtoprint.innerHTML=http_request.responseText;    
				             
            }
            else
                alert('There was a problem with the request.');
        }
    }

    function fetchinfo(url,div)
    {  
       tagtoprint=document.getElementById(div);
       makeRequest(url); 

    }

 
function closediv(div){

   document.getElementById(div).style.display = 'none';
   
   }
