

function ext_sendLostPassword()
{
	email	=	window.prompt('Para recuperar sua senha digite seu E-mail:','');

	if(email != null)
	{
		xmlhttp	=	mount_XMLHttp();
		url	=	"../ajax/extranet.senhaperdida.php?ext_email="+email;
		xmlhttp.open("GET", url,true);
	
		xmlhttp.onreadystatechange=function() {
		
			if(xmlhttp.readyState==4){
				alert(xmlhttp.responseText);
			}
		}
	
	xmlhttp.send(null);
	}
}