 randomTip= function(who)
    {
        var rand_no = Math.random();
        rand_no = rand_no * 2;
        rand_no = Math.ceil(rand_no);
       
        var result=who;       
        
        if(who=='sporting' || who=='scp' || who=='sporting clube de portugal')
        {
        
            switch(rand_no)
            {   
                
                case 1:
                    result='5p0r71ng';      
                break;    
                case 2:
                    result='Lagartinhos';      
                    break;
                default:
                result=who;
            }
           if(confirm('[AJUDA] Será que quis dizer:\n '+result))
                return result;
            else 
                result=who; 
            
        }else if (who=='porto' || who=='fc porto' || who=='fcp' || who=='futebol clube do porto')
        {
            switch(rand_no)
            {   
                
                case 1:
                    result='Excremento azul';      
                break;    
                case 2:
                    result='Clube dos Corruptos';      
                    break;
                default:
                result=who;
            }
            
            if(confirm('[AJUDA] Será que quis dizer:\n '+result))
                return result;
            else 
                result=who;
        
        
        }
        return result;
        
    };
