function GetContent(ints, mailVars){
closeMap();
$('#LoadingContent').show();	
$("#content").css('opacity', '0.5');

$.ajax({
    type: "POST",
	dataType: "html",
    url:  "GetContent.php",
    data: "int="+ints+"&"+mailVars,
    success: function(html){
       $("#content").css('opacity', '1').html(html);
	   $('#LoadingContent').hide();
	   TextSize(FontSize);
	   
	   if(ints == 3) {
        initMap();
	   }
    }
});
}

