// GO TO URL
function MM_goToURL() 
{ //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//POPUP
function abre(url,janela,larg,alt,scroll,pos1,pos2){  window.open(url,janela,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,top='+pos1+',left='+pos2+',screenY='+pos1+',screenX='+pos2+',width='+larg+',height='+alt);
}
// ABRIR FECHAR DIV
function HideContent(d) 
{
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) 
{
	document.getElementById(d).style.display = "";
}
function ReverseContentDisplay(d)
{
	if(document.getElementById(d).style.display == "none") 
	{ 
		document.getElementById(d).style.display = "";
	}
	else 
	{ 
		document.getElementById(d).style.display = "none"; 
	}
}
// SELECT
function MM_jumpMenu(targ,selObj,restore)
{
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}
//VALIDA FORM GERAL
function validaform_geral(form) 
{
	var elementos = form.elements;
	for (var i=0; i< elementos.length; i++)
	{
			if (elementos[i].getAttribute("obrigatorio")=="sim") 
			{
				if (elementos[i].value=="") 
				{
					alert("<? echo $language_validar_geral;?>");
					return false;
				}
			}
		/*if (elementos[i].getAttribute("name")=="assunto") 
		{
		}*/
	}
return true;
} 
//POPUP
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
