function GetCookie(cookieName) {
  var theCookie=""+document.cookie;
  var ind=theCookie.indexOf(cookieName);
  if (ind==-1 || cookieName=="") return null;
  var ind1=theCookie.indexOf(';',ind);
  if (ind1==-1) ind1=theCookie.length;
  return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}

var expire  = new Date();
expire.setYear(expire.getFullYear()+1);

if(GetCookie("azcz")==1) {
  document.cookie="azcz=1;expires="+expire.toGMTString()+"; path=/; domain=.azcentral.com";
}
if(GetCookie("azcid")!=null) {
  document.cookie="azcid="+GetCookie("azcid")+";expires="+expire.toGMTString()+"; path=/; domain=.azcentral.com";
}

  function loaded() {
    isNS4 = (document.layers) ? true : false;
    var ie = document.all ? 1 : 0;
    var ns = document.layers ? 1 : 0;
    var ns6 = document.getElementById ? 1 : 0;

    if(ie) {
      doc="document.all.";
      sty=".style";
    }

    if(ns) {
      doc="document.";
      sty="";
    }

    if(ns6) {
      isNS4=false;
      doc="document.getElementById('";
      sty="').style";
    }

    if(!isNS4) {
      document.body.style.backgroundColor="#FFFFFF";
      eval(doc+"story"+sty+".visibility=\"visible\"");
      return true;
    }
    return;
  }