<html xmlns="http://www.w3.org/1999/xhtml"><!-- saved from url=(0014)about:internet --><head>
    <title>test_LeftMenu</title>

    <style type="text/css">
    html, body {
        height: 100%;
        overflow: hidden;
    }
    body {
        padding: 0;
        margin: 0;
    }
    #silverlightControlHost {
        height: 100%;
    }
    </style>

    <script type="text/javascript" src="Silverlight.js"></script>

    <script type="text/javascript">
        function checkDirty(e) {
            var needConform = false;
            var message = 'You may lose all unsaved data in the application.'; // default message

            var silverlightControl = document.getElementById("SilverlightApplication").Content;
            if (silverlightControl) {
                var applicationState = silverlightControl.ApplicationState;
                if (applicationState) {
                    applicationState.OnBrowserClosing();
                    if (applicationState.IsDirty) {
                        needConform = true;
                        message = applicationState.Message;
                    }
                }
                else {
                    needConform = true;
                }

                if (needConform) {
                    applicationState.FocusOnDirtyItem();
                }
            }

            if (needConform) {
                if(!e) e = window.event;
                e.returnValue = message;

                // IE
                e.cancelBubble = true;

                //e.stopPropagation works in Firefox.
                if (e.stopPropagation) {
                    e.stopPropagation();
                    e.preventDefault();
                }

                // Chrome
                return message;
            }
        }
        window.onbeforeunload=checkDirty;
    </script>
    <script type="text/javascript">
        function onSilverlightError(sender, args) {
        
            var appSource = "";
            if (sender != null && sender != 0) {
                appSource = sender.getHost().Source;
            } 
            var errorType = args.ErrorType;
            var iErrorCode = args.ErrorCode;
            
            if (errorType == "ImageError" || errorType == "MediaError") 
            {
                return;
            }

            var errMsg = "Unhandled Error in Silverlight Application " +  appSource + "\n" ;

            errMsg += "Code: "+ iErrorCode + "    \n";
            errMsg += "Category: " + errorType + "       \n";
            errMsg += "Message: " + args.ErrorMessage + "     \n";

            if (errorType == "ParserError")
            {
                errMsg += "File: " + args.xamlFile + "     \n";
                errMsg += "Line: " + args.lineNumber + "     \n";
                errMsg += "Position: " + args.charPosition + "     \n";
            }
            else if (errorType == "RuntimeError")
            {           
                if (args.lineNumber != 0)
                {
                    errMsg += "Line: " + args.lineNumber + "     \n";
                    errMsg += "Position: " +  args.charPosition + "     \n";
                }
                errMsg += "MethodName: " + args.methodName + "     \n";
            }

            throw new Error(errMsg);
        }
    </script>


</head><body>
    <!-- Runtime errors from Silverlight will be displayed here.
    This will contain debugging information and should be removed or hidden when debugging is completed -->
    <div style="color: gray; font-size: small;" id="errorLocation"></div>

    <div id="silverlightControlHost">
        <object id="SilverlightApplication" data="data:application/x-oleobject;base64,QfXq3+HzJEysrJnDBxUISgAJAADghgAALEkAAAwAAAB3AGgAaQB0AGUAAAAAAAAAAAAAAAAAAABiAAAAVwBlAGIALwB0AGUAcwB0AF8ATABlAGYAdABNAGUAbgB1AC4AQwBsAGkAZQBuAHQALgB4AGEAcAA/AHYAPQAxAC4AMAAuADAALgAwAD8AdgA9ADEALgAwAC4AMAAuADAAAAA8AAAAAAAAACYAAABvAG4AUwBpAGwAdgBlAHIAbABpAGcAaAB0AEUAcgByAG8AcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAABgAAAA0AC4AMAAuADYAMAAzADEAMAAuADAAAAAKAAAAdAByAHUAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==" width="100%" type="application/x-silverlight-2" height="100%" IsAutomationReady="true" AutomationUid="fb799ca0-f723-4010-bc93-e385ca0c1060">
            <param name="source" value="Web/test_LeftMenu.Client.xap?v=1.0.0.0?v=1.0.0.0">
            <param name="onerror" value="onSilverlightError">
            <param name="background" value="white">
            <param name="minRuntimeVersion" value="4.0.60310.0">
            <param name="autoUpgrade" value="true">
            <a style="text-decoration: none;" href="http://go.microsoft.com/fwlink/?LinkID=124807">
                <img style="" alt="Get Microsoft Silverlight" src="http://go.microsoft.com/fwlink/?LinkId=108181">
            </a>
        </object>
        <iframe style="border: 0px currentColor; width: 0px; height: 0px; visibility: hidden;"></iframe>
    </div>


</body></html>