/*
 * Copyright 2006, Peter Rowntree. All Rights Reserved.
 * http://www.hdyn.com/wr/common/contact.php?addr=pr
 */

function doLoad()
{
   g_infoOb=document.getElementById('xfc');
   var idOb=document.getElementById("id");
   idOb.value=readCookie("22tID");   // "" if refused
   idOb.focus();
}

function view(how,aOb)
{
   var id=document.getElementById("id").value;
   if(id == "")
      xfrComm("you need to enter an ID");
   else if(isNaN(id))
      xfrComm(id+" is not a number");
   else if(how == 1)
   {
      writeCookie("22tID",id,"y1"); //to prefill field
      if(aOb != null)
         aOb.href="set.html?id="+id;
      window.location.href="set.html?id="+id;
   }
   else
      window.location.href="http://people.22true.com/"+id+".html";
}
