function setupForm(){
    document.form.fullname.value = getCookie("name");
    document.form.email.value = getCookie("email");
    if (getCookie("subscribe") == "on"){  
      document.form.Hsubscribe.checked = true;
    }else{
      document.form.Hsubscribe.checked = false;
    }
}

function getCookie(name){
  var temp=document.cookie+";";
  var Pos=temp.indexOf("=",temp.indexOf(name+"="));
  if (temp.indexOf(name+"=")==-1) return "";
  return temp.substring(Pos+1,temp.indexOf(";",Pos));
}


