if ( window.addEventListener ){
window.addEventListener('load', initCookieBasket, false);
}else if ( window.attachEvent ) {
window.attachEvent('onload', initCookieBasket);
}else {
window["onload"] = initCookieBasket;
}
function restoreBasket(){
createCookie('refill','yes');
window.location=window.location;
}
function resetBasket(){
eraseCookie('basketraw');
window.location=window.location;
}
function initCookieBasket(){
var b=document.getElementById('basketContents');
var c=readCookie('basket');
var br=readCookie('basketraw');
window.status='icb';
if(br && !c){
window.status='braw';
b.parentNode.className='hideButtons';
b.innerHTML="Your computer has a record of the shopping basket contents from your previous visit
";
b.innerHTML+="Would you like to restore these items to your basket?
" ;
b.innerHTML+='