/*********** (c) MAETVAPlanet.com - 2007 ***********/


/* Gestion des suggestions */

function lostpassword() {
		

		var xhr=null;
		if (window.XMLHttpRequest) { 
			var xhr = new XMLHttpRequest();
		}
		else if (window.ActiveXObject) 
		{
			var xhr = new ActiveXObject("Microsoft.XMLHTTP");
		}
			
			//var req = getHttpObject();
			var id = id;
			monChamp=document.getElementById('chpEmail');
			var email = monChamp.value;
			xhr.open('GET', 'lostpassword.php?email='+email, false);
			xhr.send(null);

			maDiv = document.getElementById('message');
			//alert('Mise à jour effectuée !');
			var resp = xhr.responseText;
			maDiv.innerHTML = resp;
		}
	

