// JavaScript Document

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("<b>" + name + "</b>");
      if (signed_in != -1) {
        document.write("<a href=\"http://www.univenture.com/cgi-univenture/sb/order.cgi?func=3&storeid=*1ccd54e48083ff2781d0577ad0371637&html_reg=html\"> - View/Edit Account</a>");
        document.write(" | ");
        document.write("<a href=\"http://www.univenture.com/cgi-univenture/sb/order.cgi?func=4&storeid=*1ccd54e48083ff2781d0577ad0371637&html_reg=html\">Sign Out</a>");
      }
      else
      {
        document.write(" - You are no longer signed in | ");
      }
    }
  }
  if (signed_in == -1) {
    document.write("<a  href=\"http://www.univenture.com/cgi-univenture/sb/order.cgi?func=1&storeid=*1ccd54e48083ff2781d0577ad0371637&html_reg=html\">Register</a>");
    document.write(" | ");
    document.write("<a  href=\"http://www.univenture.com/cgi-univenture/sb/order.cgi?func=2&storeid=*1ccd54e48083ff2781d0577ad0371637&html_reg=html\">Sign In</a>");
  }
}
DisplayLogName("ss_reg_0001292896");