function getHTTPObject()
{
	 var xmlhttp;
 	if(window.XMLHttpRequest){// Firefox
 		xmlhttp = new XMLHttpRequest();
 	}
 	else if(window.ActiveXObject){// Internet Explorer
 		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
 	else { // XMLHttpRequest non supporté par le navigateur
 		alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
 	return;
 	}
 return xmlhttp;
}

function popbox(link, width, height) {
	var win = window.open(link.href, 'popup', 'resizable=no, location=no, width='+width+', height='+height+', status=no, scrollbars=yes, menubar=no');	
	return false;
}

function carto(link) {
	return popbox (link, 955, 650);
}