// JavaScript Document

function generateAccommodation(lang,island)
{

var accommodation=new Array();
if (lang == 'es')
{
	accommodation[0]='Hoteles y Aparthoteles';
	accommodation[1]='Apartamentos y Bungalows';
	accommodation[2]='Villas y Viviendas Vacacionales';
	accommodation[3]='Turismo Rural';
	accommodation[4]='Reservar Alojamiento';
	}
if (lang == 'in')
{
	accommodation[0]='Hotels and Aparthotels';
	accommodation[1]='Apartments and Bungalows';
	accommodation[2]='Villas and Vacation Homes';
	accommodation[3]='Rural Tourism';
	accommodation[4]='Booking Accommodation';
	}
if (lang == 'al')
{
	accommodation[0]='Hotels und Aparthotels';
	accommodation[1]='Appartements und Bungalows';
	accommodation[2]='Villen und Ferienhäuser';
	accommodation[3]='Landhäuser';
	accommodation[4]='Unterkunft Reservieren';
	}
	

document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/hotels/hoteles-' + island + '-' + lang + '.html">' + accommodation[0] +'</a></td></tr>');

document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/hotels/apartamentos-' + island + '-' + lang + '.html">' + accommodation[1] +'</a></td></tr>');

document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/hotels/villas-' + island + '-' + lang + '.html">' + accommodation[2] +'</a></td></tr>');

document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/hotels/turismorural-' + island + '-' + lang + '.html">' + accommodation[3] +'</a></td></tr>');

document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/hotels/reservas-' + island + '-' + lang + '.html">' + accommodation[4] +'</a></td></tr>');

}

function generateTransport(lang,island)
{
var transport=new Array();
if (lang == 'es')
{
	transport[0]='Alquiler de vehículos';
	transport[1]='Viajes';
	}
if (lang == 'in')
{
	transport[0]='Rent a car';
	transport[1]='Travel';
	}
if (lang == 'al')
{
	transport[0]='Rent a car';
	transport[1]='Reise';
	}
	
document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/cgi-bin/RentaCar/PgRentaCar-gen.pl?is=' + island + '&id=' + lang +'">' + transport[0] + '</a></td></tr>');

document.write('<tr><td class="separatorCell" height="1"><img src="../img/pix.gif"></td></tr>');
document.write('<tr><td class="navCell"><a class="navLink" href="http://www.canary-travel.com/cgi-bin/Viajes/PgViajes-gen.pl?id=' + lang + '&is=' + island + '">' + transport[1] + '</a></td></tr>');
}
