function DisplayLogName(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);
          name = unescape(cookies.substring(start,end-1));
          document.write("Welome <b>" + name + "<\/b>");
          if (signed_in != -1) {
               document.write("<a href=\"http://simplytx.com/cgi-simplytx/sb/order.cgi?func=3&storeid=*1a411450102375b9020e695ed84b2e&html_reg=html\"><b>View/Edit Account</b><\/a>");
               document.write("<a href=\"http://simplytx.com/cgi-simplytx/sb/order.cgi?func=4&storeid=*1a411450102375b9020e695ed84b2e&html_reg=html\"><b>Sign Out</b><\/a>");
          }
          else
          {
          }
      }
  }
  if (signed_in == -1) {
      document.write("<a class=\"noborder\" href=\"http://simplytx.com/cgi-simplytx/sb/order.cgi?func=1&storeid=*1a411450102375b9020e695ed84b2e&html_reg=html\">Click here to <b>Register</b><\/a>");
      document.write("<a href=\"http://simplytx.com/cgi-simplytx/sb/order.cgi?func=2&storeid=*1a411450102375b9020e695ed84b2e&html_reg=html\">Click here to <b>Sign In</b><\/a>");
  }
} 

