// JavaScript Document
	
	function exibirObj(ExbObjNome, EscObjNome1, EscObjNome2){
		if(document.getElementById(ExbObjNome).style.display == 'none'){
			document.getElementById(ExbObjNome).style.display = 'block';
			document.getElementById(EscObjNome1).style.display = 'none';
			document.getElementById(EscObjNome2).style.display = 'none';		
		}		
	}
	
	
	function janela(URL,width,height,scroll)
   {
    xmax=screen.width;
    ymax=screen.height-28; 
    x=(xmax-(width+12))/2;
    y=(ymax-(height+29))/2;
    if (scroll) 
       scr_stat=" scrollbars=yes ";
    else 
       scr_stat=" scrollbars=no ";
    features="resizable=no height="+height+" width="+width+" left="+x+" top="+y+scr_stat;
    features=features+"toolbar=no location=no directories=no status=no menubar=no";
    newwin=window.open(URL,null,features);
    if(javascript_version > 1.0)
      setTimeout('newwin.focus();',250);
   }
   
	function Esconde(){
	document.getElementById('flash').style.visibility="hidden";
    }