
//Perishable popup script here


<!--
function OpenPerishable()
	{
	thewindow = window.open('http://www.foodireland.com/perishablepopup.htm', 'anew', config='height=400,width=340,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
	}

//Warning for leaving shopping cart here.


var tID = 0;
var startTime  = null;

var timeout=1*(1*100) + 0*1000; // 20:00 minutes, as milliseconsd

function UpdateTimer() {
  if(tID) {
     clearTimeout(tID);
  }
  var date = new Date();
  var diff = date.getTime() - startTime.getTime();
  if (diff >= timeout) {
    focus();
    alert(
    "Warning: Your shopping basket will expire in five minutes unless you do one of the following:\nIf you are finished shopping, click on Checkout now.\nIf you are still shopping, please add or remove and item from your shopping cart to reactivate your session.");
  } else {
    tID = setTimeout("UpdateTimer()", 1000);
  }
}
function Start() {
   startTime   = new Date();
   tID  = setTimeout("UpdateTimer()", 1000);
}
// -->


