// default Xslt for the Mapquest Open API objects
   var __mqLocationXsl = "<?xml version='1.0' encoding='ISO-8859-1'?> \
                  <xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'> \
                  <xsl:output method='html' encoding='ISO8859-1' indent='no' /> \
                     <xsl:template match='/'> \
                        <table width='760' border='0' cellspacing='0' cellpadding='0'> \
                              <tr> \
                                 <td style='width: 250px; vertical-align: top;'> \
                                    <xsl:if test='/location/name'> \
                                       <xsl:value-of select='/location/name'/><br/> \
                                    </xsl:if> \
                                    <xsl:if test='/location/address'> \
                                       <xsl:value-of select='/location/address'/><br/> \
                                    </xsl:if> \
                                    <xsl:if test='/location/city'> \
                                       <xsl:value-of select='/location/city'/>, \
                                    </xsl:if> \
                                    <xsl:if test='/location/stateProvince'> \
                                       <xsl:value-of select='/location/stateProvince'/> \
                                       <xsl:text disable-output-escaping='yes'>&amp;nbsp;</xsl:text> \
                                    </xsl:if> \
                                    <xsl:if test='/location/postalCode'> \
                                       <xsl:value-of select='/location/postalCode'/> \
                                    </xsl:if> \
                                 </td> \
                              </tr> \
                        </table> \
                     </xsl:template> \
                  </xsl:stylesheet>";
