function SubmitDataFarmacias(id, Nome, m, y, data, path){
  document.frmZona.nome.value = Nome; 
  document.frmZona.id.value = id; 
  document.frmZona.m.value = m; 
  document.frmZona.y.value = y;
  document.frmZona.data.value = data;  
  if (path != ''){
	  document.frmZona.action = path;  
  }

  document.frmZona.submit();
}
