var timezone = {

        getDate: function()
        {
                var date = new Date();
                var month = date.getMonth() + 1;
                month = this.correct( month );
                return date.getFullYear() + '-' + month + '-' + this.correct( date.getDate() ) + ' ' + this.correct( date.getHours() ) + ':' + this.correct( date.getMinutes() ) + ':' + this.correct( date.getSeconds() );
        },

        correct: function( str )
        {
                if( str < 10 ) str = '0' + str;
                return str; 
        },

        sendTime: function( url )
        {
                if( !url ) return false;
                var date = this.getDate();
                var req = new Object();
                sendRequest( req, 
                             url, 
                             {date: date},
                             function() {},
                             function( data ) {},
                             function( data ) {},
                             '',
                             'GET');
                return false;
        }

}