function irA(destino) 
{
		document.forms[0].method = "post";
		document.forms[0].action = destino;
		document.forms[0].enctype = "multipart/form-data";
		document.forms[0].submit();
}//function irA()

