// JavaScript Document
/*Simple date setter function.
//target is id of div where date is to be displayed*/
function setDate(date_box)
{
var dateString; 
var today= new Date();
var weekday=new Array(7);
weekday[0]="sunday";
weekday[1]="monday";
weekday[2]="tuesday";
weekday[3]="wednesday";
weekday[4]="thursday";
weekday[5]="friday";
weekday[6]="saturday";
var month=new Array(12);
month[0]="january";
month[1]="february";
month[2]="march";
month[3]="april";
month[4]="may";
month[5]="june";
month[6]="july";
month[7]="august";
month[8]="september";
month[9]="october";
month[10]="november";
month[11]="december";
dateString=weekday[today.getDay()]+" "+today.getDate()+" "+month[today.getMonth()]+" "+today.getFullYear();
document.getElementById(target).innerHTML=dateString;
}


/*nice recursive function to countdown redirect */
function countDown(tick)
{
if (tick == 0)
{
window.location.href="index.php"; //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);
}