
/* CLIKA AMPLIA */
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/* UTILIZA A MESMA FUNCAO PARA TODO O SITE
EXEMPLO: <a href="javascript:mostra_div('div_3','6');">
*/
function mostra_div ( div,qtd )
{
	
	for ( i=1; i<=qtd; i++ ){ 
		document.getElementById('div_'+i).style.display = 'none';
	}
	
	if (div != '') {
		document.getElementById(div).style.display = 'block';
	
	}
	
}