<!--

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:

//India
info["India"]= new adr("www.mothermeeraindia.com/" , "Tiruvannamalai", "Nov 13", "Tiruvannamalai,Tamil Nadu, India");
info["South India"]= new adr("www.mothermeeraindia.com/index.php" , "Madanapalle", "Nov 16 - 28", "Mother Meera Ashram, Paramatma Dari, Madanapalle 517 325, Andhra Pradesh, India");


//Canada



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

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



//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["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>Mother Meera North America Links</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["LA"].ausgabe()
info["NY"].ausgabe()
info["Phoenix"].ausgabe()
info["Rochester"].ausgabe()
info["Santa Fe"].ausgabe()
info["Sedona"].ausgabe()
info["SF"].ausgabe()
info["Washington"].ausgabe()
info["Foundation"].ausgabe()

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

//document.writeln("<p><i>England, Jan - Mar 09</i>"); 

//info["London1"].ausgabe()
//info["London2"].ausgabe()


//Closing span tag

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