<!--

function adr (web , city, datum, ort)
{
this.web = web;
this.city = city;
this.datum = datum;
this.ort = ort;
this.ausgabe = ausgabe;
}
var info = new Array(3);

//Fill in the Dates and webaddresses here:


//Europe
info["Germany"]= new adr("www.japa24.de/" , "Germany (en.)", "","");
info["UK"]= new adr("mothermeera.org.uk/" , "United Kingdom (en.)", "", "");
info["France"]= new adr("meremeera.fr/" , "France (fr.)", "", "");
info["Belgium fr"]= new adr("meremeera.be/bienvenue.asp", "Belgium (fr.)", "", "");

info["Belgium de"]= new adr("meremeera.be/welkom.asp", "Belgium (de.)", "", "");
info["Ireland"]= new adr("mothermeera.ie/" , "Ireland(en.)", "", "");

//Canada

info["Canada En"]= new adr("meremeeradarshancanada.com/darshan/en.html/" , "Canada (en.)", "", "");

info["Canada Fr"]= new adr("meremeeradarshancanada.com/fr.html/" , "Canada(fr.)", "", "");

//India
info["India"]= new adr("www.mothermeeraindia.com" , "India", "", "");


//USA

info["AA"]= new adr("www.mothermeeramichigan.com" , "Ann Arbor, MI", "", "");

info["Ashland"]= new adr("mothermeeraashland.org/" , "Ashland, OR", "", "");

info["Bellingham"]= new adr("mothermeeranorthwest.org/" , "Bellingham, WA", "", "");

info["Boston"]= new adr("mothermeeraboston.com/" , "Boston, MA", "", "");

info["Chicago"]= new adr("mothermeeraashram.org/" , "Chicago, IL", "", "");

info["Corvalis"]= new adr("www.mothermeeracorvallis.com/" , "Corvallis, OR", "", "");

info["Denver"]= new adr("mothermeerahomecolorado.org/" , "Denver/Boulder, CO", "", "");

info["Fairfield"]= new adr("mothermeera-fairfield.com/" , "Fairfield, IA", "", "");

info["Houston"]= new adr("mothermeerahouston.com/" , "Houston, TX", "");

info["LA"]= new adr("mothermeeradarshanla.com/" , "Los Angeles, CA", "", "");

info["NY"]= new adr("mothermeeranortheast.com/" , "NYC / New Jersey", "", "");

info["CT"]= new adr("mothermeeract.com/" , "NYC / Connecticut", "", "");

info["Phoenix"]= new adr("mothermeeraphoenix.org/" , "Phoenix/Scottsdale, AZ", "", "");

info["Rochester"]= new adr("mothermeerarochester.com/" , "Rochester, NY", "", "");

info["SF"]= new adr("mothermeerasanfrancisco.org/" , "San Francisco, CA", "", "");

info["Santa Fe"]= new adr("mothermeerasantafe.org/" , "Santa Fe, NM", "", "");

info["Sedona"]= new adr("mothermeerasedona.org/" , "Sedona, AZ", "", "");

info["VT"]= new adr("www.mothermeeravermont.com/" , "Burlington, VT", "", "");

info["FL"]= new adr("www.mothermeeraflorida.com/" , "Florida", "", "");

info["HI"]= new adr("www.mothermeerahawaii.org/" , "Hawaii", "", "");

info["TX"]= new adr("www.mothermeeratexas.com/" , "Texas", "", "");


info["Washington"]= new adr("www.mothermeerawashingtondc.com/main.htm" , "Washington, DC", "", "");

info["Cleveland"]= new adr("www.mothermeeracleveland.com" , "Cleveland, OH", "", " ");


info["Foundation"]= new adr("www.mothermeerafoundationusa.org" , "Mother Meera Foundation USA", "", " ");


//Change here the format of each line, but better don't touch!

function ausgabe() {
    document.writeln("<li><a href=\"http://"+ this.web + "\" title=\"" + this.ort+ " \" target=\"_blank\"><span style=\"white-space: nowrap;\">" + this.city + "</span></a>&nbsp;&nbsp; <span style=\"white-space: nowrap;\">"+ this.datum +"</span>"   );
}

//document.writeln("<p>News about Mothers upcoming visits in 2009 will soon be posted here."); 

//Determine the sequence of the locations, and write headings here.

//Span class, to make it easier to address CSS styles

document.writeln("<span class=\"mm08\"><ul>");

document.writeln("<p><b>Links to Mother Meera Websites around the World</b>"); 

//document.writeln("<p>No dates are currently announced, please check back soon."); 

document.writeln("<p><i>United States</i>"); 
info["AA"].ausgabe()
info["Ashland"].ausgabe()
info["Bellingham"].ausgabe()
info["Boston"].ausgabe()
info["VT"].ausgabe()
info["Chicago"].ausgabe()
info["Cleveland"].ausgabe()
info["CT"].ausgabe()
info["Corvalis"].ausgabe()
info["Denver"].ausgabe()
info["Fairfield"].ausgabe()
info["FL"].ausgabe()
info["HI"].ausgabe()
info["LA"].ausgabe()
info["NY"].ausgabe()
info["Phoenix"].ausgabe()
info["Rochester"].ausgabe()
info["Santa Fe"].ausgabe()
info["Sedona"].ausgabe()
info["SF"].ausgabe()
info["TX"].ausgabe()
info["Washington"].ausgabe()
info["Foundation"].ausgabe()

document.writeln("<p>Mother Meera Foundation USA does not sponsor websites for locations outside the United States.  Each website is hosted independently as there is no central, world-wide organization.  We list the sites here as a public service to those who would like to obtain information about Mother's activities in other countries."); 

document.writeln("<p><i>Canada</i>"); 
info["Canada En"].ausgabe()
info["Canada Fr"].ausgabe()

document.writeln("<p><i>Europe</i>"); 

info["Germany"].ausgabe()
info["UK"].ausgabe()
info["France"].ausgabe()
info["Belgium de"].ausgabe()
info["Belgium fr"].ausgabe()
info["Ireland"].ausgabe()

document.writeln("<p><i>India</i>"); 
info["India"].ausgabe()


//Closing span tag

document.writeln("</ul></span>");
-->

