		 function id( el ){
		 return document.getElementById( el );
		 }
		 function toggle_id( el )
		 {
		 if ( id( el ).style.display=='block' )
		 id( el ).style.display='none'
		 else
		 id( el ).style.display='block';
		 }
		 window.onload = function(){
		 id('toggle-span-texto-esq-inst').style.display = 'none';
		 id('toggle-span-texto-esq-art').style.display = 'none';
         	 id('toggle-form-mensagem').style.display = 'none';
		 }

