function getFiles(dirFile)
{
	var r;
	var xmlHttp = null;
	if (typeof XMLHttpRequest != "undefined")
	{
    	xmlHttp = new XMLHttpRequest();
	}
	if (!xmlHttp)
	{
    	try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
		catch(e)
		{
			try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
			catch(e)
			{
            	xmlHttp=null;
        	}
    	}
	}
	if (xmlHttp)
	{
    	xmlHttp.open('GET', dirFile, false);
		xmlHttp.send(null);
        if (xmlHttp.readyState==4)
		{
            r=xmlHttp.responseText.split("\r\n");
			r.pop();
			return r;
		}
    }
}
