function getInfoCurso(c){
	var curso = c;
	try{
		ajax = new ActiveXObject("Microsoft.XMLHTTP");
	}catch(e){
		try{
			ajax = new XMLHttpRequest();	
		}catch(e){
			ajax = null;	
		}
	}
	
	if(ajax != null){		
		ajax.open("GET","../../actions/precoCurso/ajax/precoCurso.php?curso=" + curso,true);		
		ajax.onreadystatechange = statusAjaxTotal;
		ajax.send(null);
	}else{
		alert("Este navegador não suporta Ajax!");	
	}
	
	function statusAjaxTotal(){		
		// carregando
		if((ajax.readyState == 2)||(ajax.readyState == 1)||(ajax.readyState == 3)){			
			document.getElementById('retorno').innerHTML = "<center><img src='../../../img/preload.gif'><br /><strong>T&eacute;l&eacute;charger</strong></center>";
		}	
		
		// verifica se a requisição está OK
		if((ajax.readyState == 4)&&(ajax.status == 200)){			
			if(ajax.responseText){
				document.getElementById('retorno').innerHTML = ajax.responseText;
			}
		}	
	}	
	
	return false;
}