﻿function showPopUp() {
    var content2 = "<div style='text-align:center'><img src='/images/preload.gif' width='220' height='19' alt='' />" +
                   "<div>Loading please wait..</div></div>";
    TINY.box.show(content2, 0, 0, 0, 0);
}

function hidePopUp() {
    TINY.box.hide();
    setTimeout("hidePopUp1()", 1000);
}
function hidePopUp1() {
    TINY.box.hide();
}


