//////////////////////////////////////
// updated: 8/21/2006 1:00:18 AM
//
    function DisplayStockMsg(itemno){
        var s = '';
        var d = document.getElementById(itemno);
                if(GetOutOfStockInfo(itemno)){
                s='<font size=2 color=darkred>Sorry, this item is out of stock and may delay your order...</font>';
            }else{
                s='<font size=2>This item is in stock and ready to ship...</font>';
            }
        if (d) d.innerHTML+=s;
    }
