function setEstilo(style)
{
  /*new Ajax.Updater('style','go/estilo.php?estilo='+style, {asynchronous:true, evalScripts:true} );*/
  $("#style").load('go/estilo.php?estilo='+style,{},function(e){window.location.reload();});
}

function zoomAn(url) {
  a = window.open('/adm/anexos/answers/'+url,'zoom','resizable=1,status=0');
  return false;
}

function getEnqueteResultado(enq)
{
	marcado = false;
	$("input[@type=radio]").each(
	  	function(e){
		    if(this.checked == true){
		      resposta = this.value;
		      marcado = true;
		    }
	    }
	);
  if(marcado)
  {
  	//new Ajax.Updater('enquetef','/idosoempreendedor/mods/enquete.php?a=add&enq='+enq+'&opcao='+resposta, {asynchronous:true, method: 'get', evalScripts:false});
  	$("#enquetef").load('/idosoempreendedor/mods/enquete.php?a=add&enq='+enq+'&opcao='+resposta);
  }
}