function setCookie()
{
var f = document.advfrm;
var the_cookie = "selectedIndex4userReg:" + f.state.selectedIndex + ":";
the_cookie += f.gender.selectedIndex + ":" + f.iso.selectedIndex;
the_cookie += ":" + f.ethnicity.selectedIndex + ":" + f.body.selectedIndex;
the_cookie += ":" + f.smoke.selectedIndex + ":" + f.kid_have.selectedIndex;
the_cookie += ":" + f.educ.selectedIndex + ":" + f.posted.selectedIndex;
the_cookie += ":" + f.Cphoto.selectedIndex;
the_cookie += ":" + f.distance.selectedIndex + ":" + f.country.selectedIndex;
document.cookie=escape(the_cookie);
}

function readCookie()
{
    if (document.cookie)
    {
    var the_cookie = unescape(document.cookie);
    var f = document.advfrm;
    var C = the_cookie.split(":");

f.state.selectedIndex = C[1];
f.gender.selectedIndex = C[2];
f.iso.selectedIndex = C[3]; f.ethnicity.selectedIndex = C[4]; f.body.selectedIndex = C[5]; f.smoke.selectedIndex = C[6]; f.kid_have.selectedIndex = C[7]; f.educ.selectedIndex = C[8];
f.posted.selectedIndex = C[9]; f.Cphoto.selectedIndex = C[10];
f.distance.selectedIndex = C[11]; f.country.selectedIndex = C[12];
    }
}
