function subscribe(nom, email, address, city, province, country, zip)
{	
	var xhr_object = null;
	
	if(window.XMLHttpRequest) // Firefox
		xhr_object = new XMLHttpRequest();
	else if(window.ActiveXObject) // Internet Explorer
		xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
	else { // XMLHttpRequest non supporté par le navigateur
		alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
		return;
	}
	
	//var pathFile = "/new/php/subscribe.php";
	var pathFile = "/php/subscribe.php";
	var infos = "?nom="+nom+"&email="+email+"&address="+address+"&city="+city+"&province="+province+"&country="+country+"&zip="+zip;
	var query = pathFile+infos;
	
	xhr_object.open("GET",query, true);
	
	xhr_object.onreadystatechange = function anonymous() {
		if(xhr_object.readyState == 4) {
			var tmp = xhr_object.responseText.split("*");
			if(typeof(tmp[1]) != "undefined") {
				alert('Marche pas :  ' + tmp[1]);
			}
			
			alert('Thank for your submission !');
		}
	}

	xhr_object.send(query);
}