var targetURL='http://www.rbc-chicago.org/index.html?' + self.location.href + '!';
//change the second to start counting down from
if (frames.length < 1) {
        if (self.parent.frames.length < 1) {
                var countdownfrom=10
                var currentsecond=5
                function countredirect(){
                        if (currentsecond!=1){
                                currentsecond-=1;
                        }
                        else{
                                parent.location.href=targetURL;
                        return
                        }
                        setTimeout("countredirect()",1000);
                }
                
                countredirect()
        }
}