/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function interruptor (div) {
    objetivo=document.getElementById(div);
    if(objetivo.style.display=='inline')
        objetivo.style.display='none';
    else 
        objetivo.style.display='inline';
}
