function retrieveData(elEmail,elName)
{
	$.ajax({
	  url: "http://www.interaktco.com/Phps/get_userdata.php",
	  cache: false,
	  success: function(html){
		 if(html.length>0)
		 {
			divLocation = html.indexOf("#");
			email = html.substring(0,divLocation);
			document.getElementById(elEmail).value = email ;
			if(document.getElementById(elName)!=null)
			{	
				name = html.substring((divLocation+1),html.length);
				if(name.length>0)
				{
					document.getElementById(elName).value = name ;
				}
			}
		 }
	  }
	});
}


