function homeLancamentos ( pag ) { 


		try{
			xmlhttp = new XMLHttpRequest();
		}catch(ee){
			try{
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			}catch(e){
				try{
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				}catch(E){
					xmlhttp = false;
				}
			}
		}


		xmlhttp.open("GET", 'includes/ajax/lancamentos.php?aaeaegtae=aaaeimiaenea&p1=' + pag ,true);
		xmlhttp.onreadystatechange=function() {

			if (xmlhttp.readyState==4){
				
				document.getElementById('hLancamento').innerHTML = xmlhttp.responseText
				
			}
		}
		
		
		
		
		
		xmlhttp.send(null)
		
		
}


























function homeOportunidades ( pag ) { 


		try{
			xmlhttp = new XMLHttpRequest();
		}catch(ee){
			try{
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			}catch(e){
				try{
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				}catch(E){
					xmlhttp = false;
				}
			}
		}


		xmlhttp.open("GET", 'includes/ajax/oportunidades.php?aaeaegtae=aaaeimiaenea&p2=' + pag ,true);
		xmlhttp.onreadystatechange=function() {

			if (xmlhttp.readyState==4){
				
				document.getElementById('hOportunidades').innerHTML = xmlhttp.responseText
				
			}
		}
		
		
		
		
		
		xmlhttp.send(null)
		
		
}
