/* Copyright AshAlom.com 1997-2009. Licenced to Ash Alom. ashalom [AT] gmail [Dot COM]
**************************************************************************************/



var Selected = "";
function Click(X){
	if(Selected){
		document.getElementById(Selected).style.backgroundColor="";
	}
	document.getElementById(X.id).style.backgroundColor="#D6FCD9"
	Selected = X.id;
}


//---Automatic Mailbox Reloader---
var ReloadCountdown=601;
var CountDownStatus = "On";
function StopStartCountDown(){
	if (CountDownStatus == "On"){
		CountDownStatus = "Off";
	}else{
		CountDownStatus = "On";
	}
	self.focus();
}

function CountDown(){
	if (CountDownStatus == "On"){
		ReloadCountdown--;
		if (ReloadCountdown == 0){
			document.getElementById('ReloadCounter').innerHTML = "Reloading";
		}else{
			document.getElementById('ReloadCounter').innerHTML = ReloadCountdown;
		}
		if (ReloadCountdown>-1){
			CountDownTimer = window.setTimeout('CountDown()',1000);
		}else{
			window.location.reload();
		}
	}else{
		if(document.getElementById('ReloadCounter').innerHTML == "Paused:"+ReloadCountdown){
			document.getElementById('ReloadCounter').innerHTML = "<font color=lightgrey>Paused:"+ReloadCountdown+"</font>";
		}else{
			document.getElementById('ReloadCounter').innerHTML = "Paused:"+ReloadCountdown;
		}
		CountDownTimer = window.setTimeout('CountDown()',1000);
	}
}
//-/-Automatic Mailbox Reloader---