/*
    MIRANDA Code
    ------------------
    M_footer.js - This file contains all the elments of the custom footer.
    Please edit the code included in editable zone.
*/

function M_footer() {

    document.write('<div id="rasp_footer">');

    //----------------------
    //start editable zone
    document.write('<p>&copy; ' + CompanyLongName +' -Copyright 2008 ');
    document.write('|   <a href="http://www.investa.com.au/Corporate/ContactUs.aspx"> Contact </a>');
    document.write('|   <a href="http://www.investa.com.au/Register/"> Register </a> | ');
    document.write(LinkPrivacyStatement);
    document.write(' Privacy </a>');
    document.write('|   <a href="http://www.investa.com.au/Legal/Disclaimer.aspx"> Disclaimer </a></p>');

    //end editable zone
    //----------------------

    document.write('</div>');

    //call Google Analytics code
    GoogleAnalytics()
}

function GoogleAnalytics() {

    //----------------------
    //uncomment this code and replace UA-xxxxxx-x with the current one

    /*var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    var pageTracker = _gat._getTracker("UA-xxxxxx-x");
    pageTracker._trackPageview();*/

    // end of Google Analytics code
    //----------------------
}

