function getInfo(filterId, countryId, townId, continentId){

	if (filterId == "null") {
		filterId = "argosNull";
	}
	
	if (countryId == "null") {
		countryId = "argosNull";
	}
	
	if (townId == "null") {
		townId = "argosNull";
	}
	
	if (continentId == "null") {
		continentId = "argosNull";
	}
	
	// Pb avec les données rentrées : Islande
	/*if (countryId == 0 || townId == 16) {
	
	
	}
	else {*/
	
		$.ajax({
			type: "GET",
			url: '/delia-CMS/ajaxMap/filterID-'+filterId+'/countryID-'+countryId+'/townID-'+townId+'/continentID-'+continentId+'/', // /argosSites/roquette_corp_en/html/fakeAjax.html
			success: function(retour){
				
				if (document.getElementById("filtreContent").style.display == "none") {
				
					document.getElementById("filtreContent").style.display = "block";
				}
				
				document.getElementById("filtreContent").innerHTML = retour;
				
				// pour la gestion des png avec ie6
				if (typeof document.body.style.maxHeight == 'undefined') {
					ROQ.fixPNG.init();
				}
			}, 
			dataType: "html"
		});			 
		return false;
	/*}*/
}

function defaultContact() {

	$.ajax({
			type: "GET",
			url: '/delia-CMS/ajaxMapDefaultContact/',
			success: function(retour){
				
				if (document.getElementById("filtreContent").style.display == "none") {
				
					document.getElementById("filtreContent").style.display = "block";
				}
				
				document.getElementById("filtreContent").innerHTML = retour;
				
				// pour la gestion des png avec ie6
				if (typeof document.body.style.maxHeight == 'undefined') {
					ROQ.fixPNG.init();
				}
			}, 
			dataType: "html"
		});			 
		return false;
}

function razInfo ()
{
	document.getElementById("filtreContent").style.display = "none";
}