function fn_GetTopMovers() {
    // Create an XML Object representing the source

    var GetTopMovers = <?xml version='1.0' encoding='UTF-8'?>
    <soapenv:Envelope
         xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'
         xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
         xmlns:xsd='http://www.w3.org/2001/XMLSchema'
         xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
       <soapenv:Header>
            <s0:Header xmlns:s0='http://www.xignite.com/services/'>
                 <s0:Username></s0:Username>

                 <s0:Password></s0:Password>
                 <s0:Tracer></s0:Tracer>
            </s0:Header>
       </soapenv:Header>
    <soapenv:Body>

       <s0:GetTopMovers xmlns:s0='http://www.xignite.com/services/'/>
    </soapenv:Body>
    </soapenv:Envelope>
  // Initialise Namespace variables
  var s0 = new Namespace('http://www.xignite.com/services/');
  var soapenv = new Namespace('http://schemas.xmlsoap.org/soap/envelope/');
  // Initialize HTTP Request Object
  var http = new Packages.com.magoosoft.e4x.XMLHttpRequest();
  http.open("http://www.xignite.com/xQuotes.asmx");
  http.setRequestHeader("SOAPAction","http://www.xignite.com/services/GetTopMovers");
  // Send Request
  http.send(GetTopMovers.toString());
  var GetTopMoversResponse = XML(http.responseText);
  // Insert code here to access XML Response Object 'GetTopMoversResponse'
 }