<!--

//Countdown script by Mike Thompson
//http://www.members.tripod.com/webdesign123now/
//Based on script by Website Abstraction (http://wsabstract.com)
//Modified by M. Doeff to include hyperlink captions

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="book_tahiti_handbook.gif"  
myimages[2]="book_lp_tahiti.jpg"


//specify corresponding links below
var imagelinks=new Array()

imagelinks[1]="http://www.amazon.com/exec/obidos/ASIN/1566911400/ref=nosim/localpicscom"
imagelinks[2]="http://www.amazon.com/exec/obidos/ASIN/0864427255/ref=nosim/localpicscom"

//specify captions below
var captions=new Array()
captions[1]="Tahiti Handbook (Moon Handbooks)"
captions[2]="Lonely Planet: Tahiti and French Polynesia"


//specify summaries below
var summary=new Array()
summary[1]="Whether a traveler's interests lean toward exploring the volcanic peaks of the Marquesas or shopping in Papeete's vibrant marketplace, Tahiti Handbook provides the details for planning a satisfying trip. This guide is packed with clear maps, practical facts, logistical information, and suggestions for outdoor recreation from diving to canoeing, camping, horseback riding, and hiking."
summary[2]="Amazon.com Review: If the magical islands of French Polynesia are on your itinerary, here is the perfect traveling companion. Its 29 maps highlight 4WD vehicle tracks, walking routes, and dive sites. The guide features a thorough history section, food section, accommodations for any budget, and useful Tahitian and French language sections. This book also includes all the archipelagos: the Societies, Tuamotus, Marquesas, Australs, and Gambiers--with extensive information in inter-island travel. The authors have personally tested all of the dive sites."

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<p align="center"><a target="_blank" href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>'+'<br>'+'<p align="center"><font face="Verdana" size="2"><span lang="en-us"><a target="_blank" href='+'"'+imagelinks[ry]+'">'+captions[ry]+'</a><br><br><font size="1">'+summary[ry]+'</font></span></p>')

}
random_imglink()
//-->