// JavaScript Document

function DisplayRegInfo(name) {
  var cookies=document.cookie;
  var start = cookies.indexOf(name + "=");
  var name = "";
  var start1;
  var end1;
  var tmp;
  var signed_in = -1;

  if (start != -1) {
    start = cookies.indexOf("=", start) +1;
    var end = cookies.indexOf("|", start);
    if (end != -1) {
      signed_in = cookies.indexOf("|yes", start);
     if (signed_in != -1) {
        document.write("<a href=\"http://www.smhomeopathic.com/shop-bin/sc/order.cgi?func=3&storeid=*1a548b57f0e6776b0547682fb94aac&html_reg=html\"><img src=\"/images10/icon_login.gif\" NAME=\"icon_login\" WIDTH=\"20\" HEIGHT=\"14\" VSPACE=\"6\" BORDER=\"0\" ALIGN=\"LEFT\">Manage My Account<\/a>");
        document.write("<BR CLEAR=\"ALL\">");
        document.write("<a href=\"http://www.smhomeopathic.com/shop-bin/sc/order.cgi?func=4&storeid=*1a548b57f0e6776b0547682fb94aac&html_reg=html\"><IMG SRC=\"/images10/icon_login.gif\" NAME=\"icon_login\" WIDTH=\"20\" HEIGHT=\"14\" VSPACE=\"6\" BORDER=\"0\" ALIGN=\"LEFT\">Sign Out<\/a>");
        document.write("<BR CLEAR=\"ALL\">");
      }else{
        document.write("<IMG SRC=\"/images10/icon_logged-out.gif\" NAME=\"icon_logged-out\" WIDTH=\"20\" HEIGHT=\"14\" VSPACE=\"6\" BORDER=\"0\" ALIGN=\"LEFT\">You are no longer signed in");
        document.write("<BR CLEAR=\"ALL\">");
	  }
    }
  }
  if (signed_in == -1) {
    document.write("<a href=\"http://www.smhomeopathic.com/shop-bin/sc/order.cgi?func=1&storeid=*1a548b57f0e6776b0547682fb94aac&html_reg=html\"><IMG SRC=\"/images10/icon_login.gif\" NAME=\"icon_login\" WIDTH=\"20\" HEIGHT=\"14\" VSPACE=\"6\" BORDER=\"0\" ALIGN=\"LEFT\">New SMHP Customer<\/a>");
    document.write("<BR CLEAR=\"ALL\">");
    document.write("<a href=\"http://www.smhomeopathic.com/shop-bin/sc/order.cgi?func=2&storeid=*1a548b57f0e6776b0547682fb94aac&html_reg=html\"><IMG SRC=\"/images10/icon_login.gif\" NAME=\"icon_login\" WIDTH=\"20\" HEIGHT=\"14\" VSPACE=\"6\" BORDER=\"0\" ALIGN=\"LEFT\">My Login<\/a>");
    document.write("<BR CLEAR=\"ALL\">");
  }
}