function lingua(quale){

    d = document.getElementById("lingua")
    
    switch (quale) {
        case 'ITA':
            testo = "<p>Da oltre trent'anni qualit&agrave;, stile<br /> e professionalit&agrave; nella spugna.";
            testo = testo + "<br /><br />";
            testo = testo + "Tutta la nostra fase produttiva, dai materiali impiegati alla confezione, e' rigorosamente";
            testo = testo + '<br /><img alt="" src="img/made.gif" /><br />';
            testo = testo + "al fine di poter garantire <br />ai nostri clienti una qualit&agrave; sicura<br />e inalterata nel tempo.";
            testo = testo + "<br /><br /></p>";
            break;
        case 'ENG':
            testo = "<p>Over thirty years of quality, style and professionality in towelling.";
            testo = testo + "<br /><br />";
            testo = testo + "All our productive cycle, from row materials to finishing, is strictly ";
            testo = testo + '<br /><img alt="" src="img/made.gif" /><br />';
            testo = testo + "with the purpose to be able<br />to guarantee to our customers<br />a sure quality<br />unchanged in the time.";
            testo = testo + "<br /><br /></p>";
            break;
    }
    
    d.innerHTML = testo;
}

