// função para verificar formulario------------------------------------------------------------------------------
	

up_down = function(img,body)
{
		if(img.src.indexOf("up") > -1)
		{
			img.src="img/arrow_down.gif";
			document.getElementById(body).style.display = "none";
		}
		else
		{
			img.src="img/arrow_up.gif";
			document.getElementById(body).style.display = "block";
		}
}


	
		