﻿/// <reference name="MicrosoftAjax.js"/>
Type.registerNamespace("Location");
Location.ContainerID = "";
Location.BehaviorID = "mpeLocation";

Location.Show = function(message) {
var messageContainer = $get(Location.ContainerID);
messageContainer.innerHTML = message;
var popup = $find(Location.BehaviorID);
    popup.show();
}

Location.Hide = function() {
    var popup = $find(Location.BehaviorID);
    popup.hide();
}

// Notify ScriptManager that this is the end of the script.
if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
