/*
            This script displays a warning to users using MSIE, advising them to upgrade.
*/

if (navigator.appName == "Microsoft Internet Explorer" && navigator.userAgent.indexOf("MSIE") > -1)
{
    document.write("<div>\
                    <p id=\"MSIE\">\
                        You are currently using an insecure and non-standards compliant browser.<br />\
                        You should really consider <a href=\"http://browsehappy.com/\">switching.</a>\
                        <br/>\
                        <br/>\
                        <a title=\"Browse Happy: Switch to a safer browser today\" href=\"http://browsehappy.com/\">\
                            <img src=\"http://www.sccma.asn.au/images/browse_happy.gif\" width=\"150\" height=\"40\" alt=\"Browse Happy logo\" />\
                        </a>\
                    </p>\
                </div>");
}


