function MM_openBrWindow(theURL,winName,features)
{ //v2.0
  window.open(theURL,winName,features);
}
function ExibeFaq(id)
{
    window.open("verfaq.php?id="+id,"","scrollbars=yes, menubar=no,toolbar=no, resizable=no,width=800,height=600,status=no, location=no, fullscreen=no");
}
function exibe(id)
{
	var obj= document.getElementById(id);
	if (obj.style.display == "block")
		obj.style.display= "none";
	else
		obj.style.display= "block";
}
function oculta(id)
{
	document.getElementById(id).style.display= "none";
	//document.all(id).style.display= "none";
}
