﻿function ShowModalPopup() 
{
  $find("mpeBehavior").show(); 
}

function HideModalPopup() 
{
 $find("mpeBehavior").hide(); 
}
function ShowModalDelayed()
{
    window.setTimeout('ShowModalPopup()', 500);
}