// JavaScript Document
window.onload = carga;
function carga(){
$(function(){ 	   
/*----------------------------------------*/
	$.ajax({
		type: "POST",
		url: "header/index.php",
		data: "name=John&location=Boston",
			success: function(msg){
				$("#info").html(msg);
			}
	});	
/*----------------------------------------*/
}); //jquery
}//carga