// JavaScript Document

<!-- Begin

var theCount = 0;
var theComment = new Array();
var theLinktext = new Array();
var theLinkURL = new Array();

var ranComment = 0;

	// OK, here is where you put your links.
	// It's very straightforward.  You can put as many
	// or as few as you like.  For each one, follow
	// the format as given:
	//
	// 		(1)	set 'theComment' to the description of the link.
	//		(2) set 'theLinktext' to the anchor text -- the thing you click on.  Usually should be the name of the joint.
	//      (3) set 'theLinkURL' to the place you want to go when the link is clicked.
	//		(4) be sure to keep the [] parts the same --
	//          [theCount] for theComment, and [theCount++] for theAuthor
	//
	//      HEADINGS!
	//
	// Notes:
	// It's possible to have multiple lines or paragraphs for one comment
	// by adding <br> (line break) within the text.
	//
	// You must be careful about quotes and single quotes!  Since the overall
	// text is within quotes, and quotes inside that can screw it up.  There
	// are ways to do it if you need to.
	
	
theLinktext[theCount] = 'heading'
theLinkURL[theCount] = ''
theComment[theCount++] = 'Massage and Bodywork related links'

theLinktext[theCount] = 'Chameleon Fitness'
theLinkURL[theCount] = 'http://www.chameleonfitness.net'
theComment[theCount++] = 'If you are in Paris and want to get in shape, Chameleon Fitness offers personal training services adapted to your level, your goals, and your schedule.'


theLinktext[theCount] = 'CoreBody Pilates'
theLinkURL[theCount] = 'http://www.corebodypilates.com'
theComment[theCount++] = 'Pilates is a wonderful way to be stronger, flexible and more aware of your body.  The very best Pilates studio in Paris is CoreBody.  Their staff is the fantastic!'

theLinktext[theCount] = 'American Massage Therapy Association'
theLinkURL[theCount] = 'http://www.amtamassage.org'
theComment[theCount++] = 'Most serious massage practitioners belong to a professional organization that promotes a high standard of education and ethical professional practice. In the United States, The American Massage Therapy association is the principle authority.'

theLinktext[theCount] = 'Federation Fran&ccedil;aise du Massage Bien-Etre'
theLinkURL[theCount] = 'http://www.ffmbe.com'
theComment[theCount++] = 'In France, this is the equivalent to the AMTA. '

theLinktext[theCount] = 'Massage Therapy, UK'
theLinkURL[theCount] = 'http://www.massagetherapy.co.uk'
theComment[theCount++] = 'In the United Kingdom, there are many fine associations.  See this site for a complete list. It is a fantastic, very comprehensive site about massage and complementary therapies.'

theLinktext[theCount] = 'Atlanta School of Massage'
theLinkURL[theCount] = 'http://www.atlantaschoolofmassage.com'
theComment[theCount++] = 'If you are interested in Massage as a career, I recommend that you contact The Atlanta School of Massage.'

theLinktext[theCount] = 'heading'
theLinkURL[theCount] = ''
theComment[theCount++] = 'Ile de Re and La Rochelle links'

theLinktext[theCount] = 'IledeRe.com'
theLinkURL[theCount] = 'http://www.iledere.com/'
theComment[theCount++] = 'The official site of Ile de Re, with an English version.  Listings for activities, things to see, places to stay, and more.'

theLinktext[theCount] = 'Conde Nast Traveller on Ile de Re'
theLinkURL[theCount] = 'http://www.cntraveller.com/Guides/France/Ile_de_Re/Default.aspx?Page=2'
theComment[theCount++] = 'A mini guide from Conde Nast Traveller on Ile de Re.'

theLinktext[theCount] = 'heading'
theLinkURL[theCount] = ''
theComment[theCount++] = 'Paris and France links'

theLinktext[theCount] = "Alastair Sawday's Special Places to Stay"
theLinkURL[theCount] = 'http://www.specialplacestostay.com'
theComment[theCount++] = "If you are planning a trip to France, Alastair Sawday's  Special Places to stay is my favourite reference for hotels and lodging.  Also lots of great travel programs. Their selections for La Rochelle and Ile de Re are listed under France, Charente Maritime."

theLinktext[theCount] = 'A Country Cottage in the Heart of Paris'
theLinkURL[theCount] = 'http://www.vrbo.com/49273'
theComment[theCount++] = 'A romantic little haven of peace and quiet in the heart of the Marais that can be rented short term. Perfect for your vacation stays there.'



	// Don't touch anything below...

function writeJumplinks(){

document.write('<blockquote>')
for (i=0; i<theCount; i++){
	
	if (theLinktext[i] == 'heading') {
		document.write('<a href="#jump' +i+ '"><h2>' + '&gt; ' + theComment[i] + '</h2></a> <p class="slim_line">&nbsp;</p>')
	}
}
document.write('</blockquote>')

}


function writeLinks(){

for (i=0; i<theCount; i++){
	
	if (theLinktext[i] == 'heading') {
				document.write('<br><hr><p></p><a name="jump'+i+'" id="jump'+i+'"></a><table width="480" border="0" cellspacing="0" cellpadding="0"><tr><td width="441"><h2>'  + theComment[i] + '</h2></td><td width="39"><a href="#top" class="h3">top ^</a></td></tr></table>')
	}
	else {
		document.write('<p></p><h4><a href=' + theLinkURL[i] + ' target="_blank">' + theLinktext[i] + '</a></h4>')
		document.write('<p align="left" class="base_content">' + theComment[i] + '</p>')
	}
}
}

//  End -->

