<!--  
function evalnewArray(){	

function Site2(Id,Sidn,SiteName,SiteName2,Address1,Address2,City,State,ZipCode,Dates,Dates2,Hours,Hours2,
			Specialty,Langs,Comments,Latitude,Longitude,Foto)
			{	
			var aSite= new site (Sidn,SiteName,Address1,Address2,City,State,ZipCode,"VITA",Latitude,Longitude,Foto)
					aSite.DateTimesHTML= Dates + (Dates2 == '' ? '' : '<br />'+ Dates2) +'<br />' 
					+ Hours + (Hours2=='' ? '' : '<br />' + Hours2);
					
					aSite.OtherInfo=SiteName2+'<br />' +Specialty+ '<br />' + Langs + '<br />'+Comments;
					aSite.SiteType = 'ServiceType'
					
					return aSite;
	}
	
	
 
   process_it = function(doc,responsecode) { 
     
      if (responsecode ==200)
        { lines = doc.split("\n");
          for (var i=0; i<lines.length; i++)
         	  { 
         	  x=lines[i].split(","); 
         	  Sites[i] = Site2(x[0],x[1],x[2],x[3],x[4],x[5],x[6],x[7],x[8],x[9],
         	  x[10],x[11],x[12],x[13],x[14],x[15],x[16],x[17],x[18])
         	}}
	 else if(responsecode == -1) {alert("Data request timed out. Please try later.");
 		 }
     else {alert("Request resulted in error with code= "+responsecode+". Check XML file is retrievable.");
 		 } };      //process_it
  		
 Sites = new Array();   		
 GDownloadUrl("js5/SAN Antonio6.txt", process_it);
 		 
}

//-->
