function HojeSQL()
    {
    hoje = new Date();
    
    ano = hoje.getFullYear();
    mes = new String ( hoje.getMonth() + 1 );
    dia = new String ( hoje.getDate() );

    if ( mes.length == 1 ) 
        mes = "0" + mes;
        
    if ( dia.length == 1 )
       dia = "0" + dia; 	 

    return ( ano + '-' + mes + '-' + dia );
    }
