// JavaScript Document

Cron = {

    set : function(fnc, time, run) {
        if ( run )
            eval(fnc);
        setTimeout('Cron.run(\''+fnc+'\', '+time+')', time);
    },
    
    run : function(fnc, time) {
        if ( typeof(fnc) != undefined )
        {
            eval(fnc);
            setTimeout('Cron.run(\''+fnc+'\', '+time+')', time);
        }
    }

}
