// JavaScript Document
function getXMLHTTP(){
  var A=null;
  try{
    A=new ActiveXObject("Msxml2.XMLHTTP")
  }catch(e){
    try{
      A=new ActiveXObject("Microsoft.XMLHTTP")
    } catch(oc){
      A=null
    }
  }
  if(!A && typeof XMLHttpRequest != "undefined") {
    A=new XMLHttpRequest()
  }
  return A
}

function load_quote() {
	_xmlHttp = getXMLHTTP(); 
	_xmlHttp.open("GET","/lib/ajax/load_quote.php",true);
    
	_xmlHttp.onreadystatechange=function() {
      
	  if(_xmlHttp.readyState==4&&_xmlHttp.responseText) {
      
          	var html = _xmlHttp.responseText;
	
			//Effect.toggle('test','appear');
			document.getElementById("test").innerHTML = html;
			
		  
      }
    }
    ;
    _xmlHttp.send(null)
}