function getCookieVal(offset){
  var endstr = document.cookie.indexOf(";", offset);
  if (endstr == -1)
    endstr = document.cookie.length;
  return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie(name){
  var arg = name + "=";
  var alen = arg.length;
  var clen = document.cookie.length;
  var i = 0;
  while (i < clen){
    var j = i + alen;
    if (document.cookie.substring(i, j) == arg)
      return getCookieVal(j);

    i = document.cookie.indexOf(" ", i) + 1;
    if (i == 0)
      break;
  }
  return "";
}

function SetCookie(name, value){
  expDays = 365;
  exp = new Date();
  exp.setTime(exp.getTime() + (expDays * 24 * 60 * 60 * 1000));

  document.cookie = name + "=" + escape(value) + "; expires=" + exp.toGMTString();
}

function cRedirect(value){
  SetCookie("cChoise", value);
}
function IsCookieSet()
{
  var redirpage = GetCookie("cChoise");
  if (redirpage == "colorado") {
  window.location = "/03011867/";
  }
  else if (redirpage == "nebraska") {
  window.location = "/03011867/";
  }
  else if (redirpage == "arizona") {
  window.location = "http://www.fnbaonlinehb.com/";
  }
  else if (redirpage == "california") {
  window.location = "http://www.fhbankna.com/";
  }
  else if (redirpage == "nevada") {
  window.location = "http://www.fnbnonlinehb.com/";
  }
  else if (redirpage == "hoa") {
  window.location = "http://www.cabanc.com";
  }
  else if (redirpage == "transition") {
  window.location = "/03011867/";
  }
  else {
  //window.location = "index.html"
  }
}
function IsCookieSet2()
{
  var redirpage = GetCookie("cTran");
  if (redirpage == "transition") {
  window.location = "/03011867/";
  }
}



function SetStateLocations()
{
  var redirpage = GetCookie("westStateSelect");
  if (redirpage == "arizona") {
          window.location.href="/west/about_us/locations.html?arizona"; 
  }	
}



function IsCookieSetState()
{
  var redirpage = GetCookie("westStateSelect");
  if (redirpage == "arizona") {
  	//document.getElementById('az').selected = "selected";
	document.getElementById('com_az').selected = "selected";
  }
  else if (redirpage == "california") {
 	///document.getElementById('ca').selected = "selected";
	document.getElementById('com_ca').selected = "selected";
  }
  else if (redirpage == "nevada") {
    //document.getElementById('nv').selected = "selected";
	document.getElementById('com_nv').selected = "selected";
  }
  else {
  //window.location = "/west/index.html?ca";
  }
}
function IsRateSet()
{
  var redirpage = GetCookie("westRateSelect");
  if (redirpage == "az") {
  	window.location = "/west/personal/current_rates_az.html";
  }
  else if (redirpage == "ca") {
 	window.location = "/west/personal/current_rates_ca.html";
  }
  else if (redirpage == "nv") {
    window.location = "/west/personal/current_rates_nv.html";
  }
  else {
  //window.location = "/west/index.html?ca";
  }
}
function setAllVisible() {
document.getElementById("off").style.visibility="visible";
document.getElementById("colorado_on").style.visibility="hidden";
document.getElementById("nebraska_on").style.visibility="hidden";
}
