<!--
var popupwin = null;

var w = new Array(14);
w[0]="<br><strong>Please note:</strong> We reserve the right to change the programme, for your safety, comfort and enjoyment, if weather conditions dictate.";
w[1]="1. <em>FORTALEZA.</em><br />A superb, undulating, walk  in the National Park, with excellent views of Mt.Teide, en route  to the impressive rock of Fortaleza, home to the kestrel. This  is followed by a visit to two outstanding viewpoints over the north coast, west and east, before a walk through the pine forest to the Visitors’ Centre and coffee at El Portillo. <em>4 hrs.</em>";
w[2]="2. <em>DELGARDO DE GUAJARA.</em><br />Crossing a huge Canadas, we  pass below, then up the shoulder of Mt. Guajara’s multi-coloured and bizarrely-formed rocks to reach the saddle and gaze down upon the whole of the south coast. We then return to visit the rocks of Garcia, including the Cathedral and Finger of God,  before a well-earned drink in the Parador café. <em>5 hrs.</em> (Easier option available - 4hrs.). <em>NEW!</em>";
w[3]="3. <em>OBSERVATORY-PIEDRA LA ROSA.</em><br />The observatory, on the ridge at 6,500 ft. is our starting point for  a traverse, below the ridge, with fabulous views of the north coast and the Orotava valley. We then sit atop Mt. Limon for lunch before descending into the pine forest and the aptly-named Rose rock. <em>4 hrs. NEW!</em>";
w[4]="4. <em>TENO ALTA-MASCA.</em><br />The quiet, high-plateau area of Teno Alta, with its isolated goat farms, gives way to some of the most dramatic coastal scenery as we descend to Tabaiba pass. Then we climb steadily along the ridge before walking down to the idyllic village of Masca. <em>4.5hrs. NEW!</em>";
w[5]="5. <em>LOS SILOS-EL PALMAR.</em><br />A delightful walk up the Moradas valley, with extensive views along the north coast. Then, a short walk in the silva laurel forest  before a steady descent into the valley of the wheat, with wide-ranging views of the El Palmar valley and Teno Alto range. <em>4.5hrs.</em>";
w[6]="6. <em>TWO VOLCANOES.</em><br />From the base of the Chinyero lava stream (1909 eruption) we walk up to the canal. We then follow a track past fig and almond trees before crossing  over the huge lava stream of the Garrachico volcano. Splendid views of the north coast before entering the Pine forest and the attractive campsite of Arenas Negras. <em>4 hrs. NEW!</em>";
w[7]="7. <em>MASCA GORGE (medium-hard).</em><br />Perhaps the most visually-stunning gorge you’ll ever walk up (the safest way, but you must be sure-footed and prepared for a little scrambling in places). We take a short boat ride from Los Gigantes before the 2,000ft. steady climb. <em>4 hrs. Prior booking required-before 6pm. Friday. Depart  Sundays.</em>";
w[8]="8. <em>PEDRO ALVAREZ-BAJAMAR.</em><br />A steep but steady climb takes us up  onto the impressive ridge above P.A. and into the silva-laurel forest. We make for the viewpoint at Moquinal before descending a recently-improved footpath through a little-known valley to Bajamar. Great variety of terrain. <em>4.5 hrs. Opportunity to Swim  in the sea-water pools at Bajamar. NEW!</em>";
w[9]="9. <em>TABORNO-ROQUE NEGRO.</em><br />After a slight ascent from Taborno with its impressive &quot;little Materhorn&quot;, there is a  steady descent into the delightful Afur valley. We then climb up to Roque Negro,  passing many habitable caves located, precariously it seems, at the foot of huge rock structures. <em>4 hrs. NEW!</em>";
w[10]="10. <em>CHINOBRE-CHAMORGA.</em><br />A wonderful walk along the Anaga main ridge, at 700&nbsp;m., through the silva-laurel forest with impressive views of the north coastline, and its isolated hamlets,  right along to the Northern lighthouse. We then descend to the pretty village of Chamorga. <em>4 hrs.</em>";
w[11]="11. <em>AGUA AND FLORA.</em><br />High in the Orotava valley, we visit a galleria which supplies water to Puerto. Now our route follows along the line of the pine forest (restocked with laurel and heathers after the hurricane of 2003) with appealing views of terraced farms and the north  coast, until we reach Chanajiga. <em>4hrs.</em>";
w[12]="12. <em>LA CALDERA-PINO ALTA.</em><br />We go eastward from La Caldera to ascend through the pine forest, with occasional views down to the coast, to  reach choza Almadi. Now we descend the eastern ridge with some magnificent views across the Orotava valley before reaching  the mirador at Pino Alta. <em>5hrs. NEW!</em>";
w[13]="13. <em>LA CORONA-BARRANCO RUIZ.</em><br />A short climb takes us upto an amazing view of the Orotava valley from the western ridge. We then climb steadily past terraced fields with extensive views of the north coast. An ancient camino takes us down to Icod El Alta and there we enter the head of barranco Ruiz, with its impressive cliffs, before descending to the coast. <em>4.5 hrs.</em>";

var a = new Array("","150"	,"350"	,"50"	,"250"	,"550"	,"350"	,"600"	,"320"	,"450"	,"250"	,"350"	,"450"	,"300");
var d = new Array("","150"	,"350"	,"650"	,"450"	,"350"	,"450"	,"0"	,"650"	,"550"	,"350"	,"250"	,"850"	,"750");
var r = new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0);
var rt = new Array("","easy","easymedium","medium","mediumhard");
function popup(i)
{
	if((popupwin==null)||(popupwin.closed))
	{
		popupwin = window.open("", "info", "width=550, height=450 resizable='true'");
		popupwin.document.open("text/html");
	}
	//Colour coded walks... not sure I like this...
	popupwin.document.write('<head><link rel="stylesheet" type="text/css" href="./walks.css" /></head><body>');
	popupwin.document.write('<table><tr><td><p class="'+rt[r[i]]+'">');
	popupwin.document.write(w[i]);
	popupwin.document.write("<br>&nbsp;");
	popupwin.document.write("<br>Ascent: "+a[i]+"&nbsp;m&nbsp;&nbsp;&nbsp;Descent: "+d[i]+"&nbsp;m");
	popupwin.document.write("<br>"+w[0]);
	popupwin.document.write("</p></td></tr></table></body>");
	popupwin.document.close();
	popupwin.focus();
}

//	For navigation
var url=Array(8);
var lastIndex=7;
url[0]="";
url[1]="./WalksProgramme.htm";
url[2]="./Nov2007.htm";
url[3]="./Dec2007.htm";
url[4]="./Jan2008.htm";
url[5]="./Feb2008.htm";
url[6]="./Mar2008.htm";
//url[7]="./Apr2008.htm";
url[7]="";

function jump(f)
{
	index=f.navigation.selectedIndex;
	if (index==0) return;
	if(!((popupwin==null)||(popupwin.closed)))
	{
		popupwin.close();
	}
	if (index==lastIndex)
	{
		//	Close the current window
		close();
	}
	window.location.href=url[index];
}

-->