﻿
function ShowModalPopupWithDelay(id) {
    var t=setTimeout("ShowModalPopup('"+id+"')",1000);
}

function ShowModalPopup(id) { 
    var modalpopup = $find(id);
    modalpopup.show();
}

function Redirect(address) {
    window.location  = address;
}