XML Calendar

I created a basic events page that pulls all the info from an xml. What I need to know is how can I have flash go to the next event automatically once the date for the previous event has passed.
AS:

prev_btn._x = news_txt._x;
next_btn._x = news_txt._x+news_txt._width;
//
mon = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Oct", "Nov", "Dec"];
weekdays = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
now = new Date ();
nDay = weekdays[now.getDay ()];
nMonth = mon[now.getMonth ()];
nDate = now.getDate ();
//
function loadXML (loaded) {
    if (loaded) {
        xmlNode = this.firstChild;
        news = [];
        description = [];
        day = [];
        date = [];
        time = [];
        month = [];
        venue = [];
        total = xmlNode.childNodes.length;
        for (i=0; i<total; i++) {
            day* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
            month* = xmlNode.childNodes*.childNodes[1].firstChild.nodeValue;
            date* = xmlNode.childNodes*.childNodes[2].firstChild.nodeValue;
            news* = xmlNode.childNodes*.childNodes[3].firstChild.nodeValue;
            time* = xmlNode.childNodes*.childNodes[4].firstChild.nodeValue;
            venue* = xmlNode.childNodes*.childNodes[5].firstChild.nodeValue;
            description* = xmlNode.childNodes*.childNodes[6].firstChild.nodeValue;
            duplicateMovieClip (picture.container, "pic"+i, i);
        }
        firstnews ();
    } else {
        content = "file not loaded!";
    }
}
xmlData = new XML ();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load ("news.xml");
///////////////////////////////////// 
listen = new Object ();
listen.onKeyDown = function () {
    if (Key.getCode () == Key.LEFT) {
        prevnews ();
    } else if (Key.getCode () == Key.RIGHT) {
        nextnews ();
    }
};
Key.addListener (listen);
prev_btn.onRelease = function () {
    prevnews ();
};
next_btn.onRelease = function () {
    nextnews ();
};
///////////////////////////////////// 
p = 0;
this.onEnterFrame = function () {
    if (month[p] == undefined) {
        this.pos_txt.htmlText = "";
        this.news_txt.htmlText = "No Events at this time";
    }
    if (news_txt.length>=160) {
        scroll_mc._visible = true;
    } else {
        scroll_mc._visible = false;
    }
    filesize = picture["pic"+p].getBytesTotal ();
    loaded = picture["pic"+p].getBytesLoaded ();
    this.preloader._visible = true;
    if (loaded != filesize) {
        this.preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
        this.preloader._visible = false;
        if (picture["pic"+p]._alpha<100) {
            picture["pic"+p]._alpha += 10;
        }
    }
};
function txt_content (p) {
    this.news_txt.htmlText = "Date: <FONT COLOR='#DB02DB'>"+day[p]+", "+month[p]+" "+date[p]+"</FONT><br>"+"Time: <FONT COLOR='#DB02DB'>"+time[p]+"</FONT><br>"+"Location: <FONT COLOR='#DB02DB'>"+news[p]+"</FONT><br><br><FONT COLOR='#ffffff'>"+description[p]+"<br>Or go to</FONT> <FONT COLOR='#DB02DB'><u><a href='http://"+venue[p]+"'target='_blank'>"+venue[p]+"</a></u></FONT><br>";
}
function date_hider () {
    var todaysdate = (nMonth+nDate);
    var gigdate = (month[p]+date[p]);
    if (nMonth>month[p]) {
        if (nDate>date[p]) {
            nextnews ();
        }
    }
}
function firstnews () {
    p = 0;
    if (loaded == filesize) {
        txt_content (p);
        date_hider ();
    }
    picture_num ();
}
function nextnews () {
    if (p<(total-1)) {
        p++;
        if (loaded == filesize) {
            txt_content (p);
        }
        picture_num ();
    }
}
function prevnews () {
    picture_num ();
    if (p>0) {
        p--;
        txt_content (p);
    }
    picture_num ();
}
function picture_num () {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
}

XML:

<newsblock>
<news>
    <day>Fri</day>
    <month>Apr</month>
    <date>20</date>
    <location>Painter’s</location>
    <times>10-2</times>
    <venuesite>www.paintersrestaurant.com</venuesite>
    <details><![CDATA[Call for more info 631-286-6264]]></details>
</news>
<news>
    <day>Fri</day>
    <month>Jun</month>
    <date>15</date>
    <location>Meritage</location>
    <times>10 - 1</times>
    <venuesite>eatoutlongisland.com/fullrestview.asp?key=427</venuesite>
    <details><![CDATA[Call for more info 631-286-3300]]></details>
</news>
</newsblock>