//read cookie
var cartCookie = unescape(readCookie('FloridaBiz'));
var storeId = "yhst-74054535193971"; // add store id between quotes.

function writeCart(){
 
 var links = new Array();
 var titles = new Array();
 var prices = new Array();
 var units = new Array();
 var total = "";
 var cartURL = "http://order.store.yahoo.net/cgi-bin/wg-order?catalog=" + storeId;
 var myCheckout = "https://order.store.yahoo.net/ymix/MetaController.html?ysco_key_event_id=1&ysco_key_store_id=" + storeId + "&sectionId=ysco.ship-bill"
 var showCart = 1; // 1 = yes; 0 = no;
 var showChechout = 1; // 1 = yes; 0 = no;

 if (cartCookie && cartCookie != ""){
  var eachArray = cartCookie.split("^");
  if (eachArray[0] && eachArray[0].length > 0){
   var eachElement = eachArray[0].split("|:|");
   total = eachElement[0];
  }
  if (eachArray[3] && eachArray[3].length > 0) {
   var numItems = eachArray[3].split("|:|").length - 1;
  }else {
    var carthtml='<div class="fcartBG"><strong> $ 0.00 </strong></div>';
    document.getElementById("totalamount").innerHTML=carthtml;
    return null; 
  }
  if (numItems > 0 ){
    var carthtml='<div class="fcartBG"><strong> ' + total + ' </strong></div>';
    document.getElementById("totalamount").innerHTML=carthtml;
  } 
 }
}
