﻿// JScript File
function countDown(tick)
{
if (tick == 0)
{
window.location.href="http://csrha.org"; //set your URL address here
return;
}
var time = "Transfer in ";
var minute = Math.floor(tick / 60);
if (minute < 10)
{
time += "0";
}
time += minute + ":";
var second = tick % 60;
if (second < 10)
{
time += "0";
}
time += second;
window.status = time;
--tick;
var command = "countDown(" + tick + ")";
window.setTimeout(command,1000);
}

//Function for Quick Search redirection
function parseAndRedirect(source, eventArgs) {
    var s = eventArgs.get_value();
    var reArgs = s.split(" ");
    if (reArgs[1] == "True"){
        window.location = "aed_member.aspx?id=" + reArgs[0];
    }
    else {
        window.location = "aed_contact.aspx?id=" + reArgs[0];
    }
} 
//--> 
