
/* 1= up/jpg - 0=dn/gif */
function onMouseGJ(over, img_name, gj) { 
 document.images[img_name].src = 
 "images/" + img_name + ( (over) ? "_up" : "_dn" ) + ( (gj) ? ".jpg" : ".gif" ); 
} 

/* 1= up/jpg - 0=dn/gif */
function ChImage(img_name, img_nmNew, gj) { 
 document.images[img_name].src = 
 "images/" + img_nmNew + ( (gj) ? ".jpg" : ".gif" ); 
} 

function NovaJanela(html, larg, alt) {
	var _cred = window.open(
		html,
		"_cred",
		"width=" + larg + ",height=" + alt + ",dependent=no,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,toolbar=no"

	);
	_cred.focus();
    
}

function Envie_sua_Mensagem() {
	var _gb = window.open(
		"form.inc.php3",
		"_gb",
		"width=675,height=500,dependent=no,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no"
	);
	_gb.focus();
}

function MnPrintUp(mn_Name){
document.images[mn_Name].src = "images/" + mn_Name + "_up.gif";

}



/* MousOver dos icones de Navegacao 
function SwapImg(over, ic_Name) {

		var tp_Numb = 1 //Numero do top da pagina
		var img_Name = "tp_ic" + ic_Name;
		var ct_Name = "tp" + tp_Numb + "_ct_" 

		document.images[img_Name].src = "images/tp_ic" + ic_Name + ( (over) ? "_up" : "_dn" ) + ".gif";

		if (over) { 
		document.images[ct_Name].src = "images/" + ct_Name + ic_Name + ".gif"; 

          } else { 
             document.images[ct_Name].src = "images/baca.gif";
      }
}*/