var basketTimeout = 0;

function basketAdd(stockCode) {
    qty=document.getElementById('qty'+stockCode).value;
    if (qty == '') {
	qty = '1';
    }	
    hassum = 1;
    if (document.getElementById('basketsum') == null) {
	hassum = 0;
    }
    loadXMLDoc('/cgi-bin/ajax/basketAdd.pl?stockCode='+escape(stockCode)+'&qty='+escape(qty)+'&hassum='+hassum+'&d='+escape(new Date()),true,'Adding...');
    //alert('/cgi-bin/ajax/basketAdd.pl?stockCode='+escape(stockCode)+'&qty='+escape(qty)+'&d='+escape(new Date()),true,'');
    return false;
}

function closeNotify(){
    document.getElementById('basket_notify').style.display='none';
}
