// function to set time out. currently 20 mins.
var lTime=120*60;
function LogoutTimer() {

lTime=lTime-1;

var lMins=(lTime-(lTime%60))/60;
var lSecs=lTime%60;

window.status="Basket expires: " + lMins + " Min " + lSecs + " Sec" ;

//5 min warning
//if (lMins==5 & lSecs==0) {
//alert('Your shopping cart will be automatilly cleared out in 5 minutes. To continue, please refresh your cart page should you wish to keep it active');
//}

//timeout warning
if (lMins==2 & lSecs==0) {
alert('Your session will shortly time out. You will need to re add any products you may have chosen into the shopping cart.');
}

}

window.setInterval("LogoutTimer()",1000);
LogoutTimer();

