<!--
    exp=new Date();
    exp.setTime(exp.getTime() + 1000 * 60 * 60 * 24 * 365);

    function setMyYMCA(myPage){
        document.cookie = "myYMCA=" + myPage + ";expires=" + exp.toGMTString();
    }

    var cookie_string = document.cookie;

    if(cookie_string != "" && cookie_string != null){
        var myPage = cookie_string.split("=");

        if(myPage[1] != "index2.html"){
            document.writeln("<meta http-equiv=\"refresh\" content=\"0;url=./" + myPage[1] + "\"></head></html>");
        }
    }
// -->