function ForgetPassword(str1)
{
		xmlHttpCourses=GetXmlHttpObject();
		if (xmlHttpCourses==null)
		{
		alert ("Browser does not support HTTP Request");
		return;
		}

		document.getElementById("Frm_Show").disabled=true;
		document.getElementById("LoadingMsg").innerHTML = 'Loading&hellip;';
		document.getElementById("LoadingBar").style.display="";
		document.getElementById("EmailIDErrorText").innerHTML = "&nbsp;";
		document.getElementById("InvalidLoginText").innerHTML = "&nbsp;";

		var url="http://www.indb2b.com/Ajax.php";
		var parameters="fuse=3&EmailID="+str1;

		xmlHttpCourses.onreadystatechange= function ()
			{
			if (xmlHttpCourses.readyState==4 || xmlHttpCourses.readyState=="complete")
				{
					if (xmlHttpCourses.responseText == 1)
					{
						document.getElementById("EmailIDError").className="fld_ERROR";
						document.getElementById("EmailIDErrorText").innerHTML = 'Please Enter a Valid Email ID....';
						document.getElementById("LoadingBar").style.display="none";
						document.getElementById("LoadingMsg").innerHTML = "&nbsp;";
					}
					else if (xmlHttpCourses.responseText == 2)
					{
					document.getElementById("InvalidLoginText").innerHTML = 'The E-Mail ID provided could not be found in our database...';
					document.getElementById("LoadingBar").style.display="none";
					document.getElementById("LoadingMsg").innerHTML = "&nbsp;";
					}
					else if (xmlHttpCourses.responseText == 3)
					{
					document.getElementById("PageData").innerHTML = "<br><br><br><br>Thanks for Using Our Services Your Password Recovery Instructions Has Been Email to your E-mail ID : [  "+ str1  +" ]<br><br><br><br>";
					}

					document.getElementById("Frm_Show").disabled=false;
				}
			}

		xmlHttpCourses.open('POST', url, true);
		xmlHttpCourses.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
		xmlHttpCourses.setRequestHeader("Content-length", parameters.length);
		xmlHttpCourses.setRequestHeader("Connection", "close");
		xmlHttpCourses.send(parameters);
}
