
/*
LAST MODIFIED : 25 January 2007
MODIFIED BY : Bertrand
COMMENTS : 
LAST CHANGE :
*/	

   // Retrieves the text specified by the id from the aLang array
			// textid : id of the text
			function getTxt( textid )
			{
				var string = "";
				if ( aLang[textid] == null )
				{
				 string = textid;
				} 
				else{
					string = aLang[textid];
				}			
				
				return string;
			}
