	function Member_Rec(XML_File) {
		this.Name = null;
		this.Info = null;
		this.Load_XML(XML_File);
	}

	Member_Rec.prototype.verify = function () { 
		if (this.XMLDOM.readyState != 4) { 
			return false; 
	 	}
	}
	
	Member_Rec.prototype.Load_XML = function (XML_File) {
		var xmlDoc;
		if (window.ActiveXObject) {
		  xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
		  xmlDoc.async=false;
		  xmlDoc.load(XML_File);
		  this.XMLDOM = xmlDoc;
  	}
		else if (window.XMLHttpRequest) {
		  xmlDoc=new window.XMLHttpRequest();
		  xmlDoc.open("GET",XML_File,false);
		  xmlDoc.send("");
		  this.XMLDOM = xmlDoc.responseXML;
	  }
	  else {
	  	do {
	  		xmlDoc = document.getElementById('CMilk').XMLDocument;
	  	}	while (xmlDoc == null);
	  	this.XMLDOM = xmlDoc;
	  }
	}

	Member_Rec.prototype.Get_Member = function (M_Name) {
		var Person = null,Root = this.XMLDOM.documentElement;
		var Found = false;
		for (Index = 0; Index < Root.childNodes.length && !Found; Index++) {
			Person = Root.childNodes[Index];
			if (Person.tagName == 'member') {
				for (N_Index = 0; N_Index < Person.childNodes.length && !Found; N_Index++) {
					ID = Person.childNodes[N_Index];
					if (ID.tagName == 'name') {
						if (ID.firstChild.nodeValue == M_Name)
							Found = true;
					}
				}
				if (Found) {
					Found_Again = false;
					for (N_Index = 0; N_Index < Person.childNodes.length && !Found_Again; N_Index++) {
						ID = Person.childNodes[N_Index];
						if (ID.tagName == 'info') {
							Found_Again = true;
						}
					}
				}
			}
		}
		if (Found) {
			this.Name = M_Name;
			if (ID.firstChild.nextSibling)
				this.Info = ID.firstChild.nextSibling.nodeValue;
			else
				this.Info = ID.firstChild.nodeValue;
		}
		else {
			this.Name = null;
			this.Info = null;
		}
	}
	
	Member_Rec.prototype.Show_Info = function() {
		if (this.Name == null)
			document.getElementById('Details').innerHTML = '';
		else
			document.getElementById('Details').innerHTML = this.Info;
	}
	