	ListObjectID = new Array; nItemsObjectID = 0;

	function ObjectID (sID, sClientID){
		ListObjectID[nItemsObjectID] = this; nItemsObjectID++;
        this.ID = sID; 
        this.ClientID = sClientID;
    }

    function GetObjectID (sID){
        for (i = 0; i < nItemsObjectID; i++){
			if (ListObjectID[i].ID == sID) 
				return ListObjectID[i].ClientID;
		} 
		return null;
	}
	
	function GetDDLText(sID){
		var id = GetObjectID(sID);
		if ((id != null) && (document.getElementById(id) != null)) return document.getElementById(id).options[document.getElementById(id).selectedIndex].text;
		return "";
	}

	function GetDDLValue(sID){
		var id = GetObjectID(sID);
		if ((id != null) && (document.getElementById(id) != null)) return document.getElementById(id).options[document.getElementById(id).selectedIndex].value;
		return "";
	}

	function GetTBText(sID){
		var id = GetObjectID(sID);
		if ((id != null) && (document.getElementById(id) != null)) return document.getElementById(id).value;
		
		return "";
	}

	function GetLblText(sID){
		var id = GetObjectID(sID);
		if ((id != null) && (document.getElementById(id) != null)) return document.getElementById(id).innerText;
		return "";
	}


