/**** Mini Cart ItemCount Display ****/

/**** REPLACE THE VALUES IN THESE LINES ****/
var serialnum="0001235191";
var cartURL="http://www.pennywiselearning.com/cgi-pennywiselearning/sb/order.cgi?storeid=*30b37c7e975c5ecddb98bbab8004ca40b73dc95cf1c7d91ce041&function=show";
var textColor="#666666";
var backgroundColor="transparent";
var showCart="yes";       // only "yes" or "no"
var cartColor="#666666";    // only "black" or "white"
var textAlign="left";     // only "left" "right" or "center"

/**** DON'T CHANGE ANYTHING BELOW HERE ****/

var linkColor=textColor;
var cookies=document.cookie;  //read in all cookies
var start = cookies.indexOf("ss_cart_" + serialnum + "="); 
var cartvalues = "";
var linecount = 0;
var start1;
var end1;
var tmp;

// Start Output
document.write("<div style=\"color:" + textColor + ";");
document.write("background-color:" + backgroundColor + ";");
document.write("text-align:" + textAlign + ";");
document.write("font-family: Verdana, Geneva, sans-serif;");
document.write("font-size: 8pt;");
document.write("\">\n");



if (start == -1)  //No cart cookie
{
  document.write("<table border=\"0\" class=\"minicart\">");
  document.write("<tr>");
  document.write("<td>");
  document.write("<img name=\"\" src=\"http:\/\/www.pennywiselearning.com\/media\/spacer.gif\" width=\"46\" height=\"26\" alt=\"\" \/>");
  document.write("<br \/>");
  document.write("<a href=\"" + cartURL + "\">");
  document.write("<font color=\"#CC0000\">0 <\/font><font color=\"#666666\">Items<\/font>");
  document.write("</a> ");
  document.write("</div>\n");
  document.write("<\/td>");
  
  		document.write("<td>");
		document.write("<img name=\"\" src=\"http:\/\/www.pennywiselearning.com\/media\/spacer.gif\" width=\"46\" height=\"9\" alt=\"\" \/>");
		document.write("<br \/>");
		document.write("<font color=\"#CC0000\">");
		document.write("$0.00");
		document.write("<\/font>");
		document.write("<br \/>");
		document.write("<a href=\"http://www.pennywiselearning.com/cgi-pennywiselearning/sb/order.cgi?storeid=*30b37c7e975c5ecddb98bbab8004ca40b73dc95cf1c7d91ce041&function=show\""); 
        document.write("style=\"text-decoration: underline;");
        document.write("color: #5A5DA5;");
        document.write("\">");
        document.write("Checkout");
        document.write("</a>");

}
else   //cart cookie is present
{
  document.write("<table border=\"0\" class=\"minicart\">");
  document.write("<tr>");
  document.write("<td>");
  document.write("<img name=\"\" src=\"http:\/\/www.pennywiselearning.com\/media\/spacer.gif\" width=\"46\" height=\"26\" alt=\"\" \/>");
  document.write("<br \/>");

  start = cookies.indexOf("=", start) +1;  
  var end = cookies.indexOf(";", start);  

  if (end == -1)
  {
    end = cookies.length;
  }

  cartvalues = unescape(cookies.substring(start,end)); //read in just the cookie data

  start = 0;
  while ((start = cartvalues.indexOf("|", start)) != -1)
  {
    start++;
    end = cartvalues.indexOf("|", start);
    if (end != -1)
    {
      linecount++;

      if (linecount == 2) // Total Quantity of Items
      {
        tmp = cartvalues.substring(start,end);
        colon = tmp.indexOf(":", 0);
        document.write("<a href=\"" + cartURL + "\" style=\"color:" + linkColor + "\">");
		document.write("<font color=\"#CC0000\">");
        document.write (tmp.substring(colon+1,end - start));
		document.write("<\/font>");
        if ((tmp.substring(colon+1,end - start)) == 1 )
        {
          document.write(" Item");
		  document.write("<\/td>");


        }
        else
        {
          document.write(" Items");
		  document.write("<\/td>");  

        }
      }
	  
     if (linecount == 3)  // Product Subtotal
      {
        tmp = cartvalues.substring(start,end);
        colon = tmp.indexOf(":", 0);
		document.write("<td>");
		document.write("<img name=\"\" src=\"http:\/\/www.pennywiselearning.com\/media\/spacer.gif\" width=\"46\" height=\"9\" alt=\"\" \/>");
		document.write("<br \/>");
		document.write("<font color=\"#CC0000\">");
        document.write(tmp.substring(colon+1,end - start));
		document.write("<\/font>");
		document.write("<br \/>");
		document.write("<a href=\"http://www.pennywiselearning.com/cgi-pennywiselearning/sb/order.cgi?storeid=*30b37c7e975c5ecddb98bbab8004ca40b73dc95cf1c7d91ce041&function=show\""); 
        document.write("style=\"text-decoration: underline;");
        document.write("color: #5A5DA5;");
        document.write("\">");
        document.write("Checkout");
        document.write("</a>");

      }
  
      start = end;
    }
    else
      break;
    }
  } // end while loop

  //close minicart HTML
  document.write("<\/td>");
  document.write("<\/tr>");
  document.write("<\/table>");
  document.write("</a>");
  document.write("</div>\n");
