﻿/*silverlight installed check*/

function onSilverlightError(sender, args) {
    if (args.errorType == "InitializeError")  {
        var errorDiv = document.getElementById("errorLocation");
        if (errorDiv != null)
            errorDiv.innerHTML = args.errorType + "- " + args.errorMessage;
    }
}