//*********************
//CONFIGURATION OPTIONS
//*********************

var mycss=0;
var last_updated="August 2006";
var menu_total=9;



//****************************
// END OFCONFIGURATION OPTIONS
//****************************


menu=new Array(menu_total);

for(j=0;j<=menu_total;j++) {
menu[j]=new Array(2);
}

menu[0][0]="index";
menu[0][1]="Home";

menu[1][0]="info";
menu[1][1]="Further Information";

menu[2][0]="photos";
menu[2][1]="Photos of Apartment";

menu[3][0]="availability";
menu[3][1]="Availablility &#38; Prices";

menu[4][0]="terms";
menu[4][1]="Terms &#38; Conditions";

menu[5][0]="javea";
menu[5][1]="About Javea";

menu[6][0]="photos2";
menu[6][1]="Photos of the Area";

menu[7][0]="maps";
menu[7][1]="Maps &#38; Travel";

menu[8][0]="contact";
menu[8][1]="Contact Us";

//menu[9][0]="weather";
//menu[9][1]="Weather in Javea";


function write_title(menu_item) {
 for (i=0;i<menu_total;i++) {
 if(menu[i][0].toLowerCase()==menu_item.toLowerCase()) {
  document.title="Luxury Apartment in Javea, Spain >> " + menu[i][1];
  document.writeln('<link REL="StyleSheet" TYPE="text/css" HREF="style' + mycss + '.css">');
  }
 }
}



function write_header() {
document.writeln("<center>");
document.writeln("<table class=redtable border=0 cellpadding=4 cellspacing=0 width=670>");
document.writeln('<tr><td width="100%" class=tabletop>&nbsp;</td></tr>');
document.writeln("<tr><td>");

document.writeln("<table border=0 class=yellowtable width=650 cellpadding=5 cellspacing=0>");
document.writeln("<tr><td>");

document.writeln("<table border=0 class=maintable width=650 cellpadding=5 cellspacing=0>");
document.writeln("<tr valign=top><td width=140 class=leftmenu>");

document.writeln('<center><a href=index.html class=puerto><img src="sun.gif" alt="www.puertoreal.co.uk" width=100 height=100 border=0><br>www.puertoreal.co.uk</a></center><br>');

}


function display_menu(menu_item) {
 for (i=0;i<menu_total;i++) {
 if(menu[i][0].toLowerCase()==menu_item.toLowerCase()) {
  document.write('<font class=activea>' + menu[i][1] + '</font><br>');
  }
 else document.write('<a href="' + menu[i][0] + '.html" class=menulink>' + menu[i][1] + '</a><br>');
 }

document.writeln('<br></td>');
document.writeln('<td background="sun2.gif" width=500>');
}


function write_footer() {
document.writeln('<br><br></td></tr></table>');
document.writeln('</td></tr></table>');
document.writeln('</td></tr><tr><td width="100%" class=tabletop>&nbsp;</td></tr></table>');
document.writeln('<br><font class=greydots>.......................................................................................................................');
document.writeln('<br>(C) <a class=greylink href="mailto:yvonnefp@btinternet.com">Gordon and Yvonne Peel</a>&nbsp;&nbsp;&nbsp;>>&nbsp;&nbsp;&nbsp;Last Updated: ' + last_updated);
}