<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var sidewidth		= "160"		// SIDEBAR WIDTH (also edit CSS)
var pageheight		= "125"		// INCREASE PAGE HEIGHT

var notes1		= "yes"		// SHOW 1ST NOTES
var notes2		= "yes"		// SHOW 2ND NOTES
var notes3		= "yes"










// 1st NOTES AREA
   if (notes1 == "yes") {
document.write('<div class="announce">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" >');
document.write('<h2>Find a Villa</h2>');
document.write('</td></tr><tr><td class="inlinesubtitle">');

document.write('<a href="3-bedroom.html">3 bedroom villas</a><br>');
document.write('<a href="4-bedroom.html">4 bedroom villas</a><br>');
document.write('<a href="5-bedroom.html">5 bedroom villas</a><br>');
document.write('<a href="6-bedroom.html">6 bedroom villas</a><br>');
document.write('<a href="7-bedroom.html">7 bedroom villas</a><br>');
document.write('</td></tr></table>');
document.write('<br>');
document.write('</div>');
}

document.write('<br>');

// 2nd NOTES AREA
   if (notes2 == "yes") {
document.write('<div class="announce">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" >');
document.write('<h2>Florida Information</h2>');
document.write('</td></tr><tr><td class="inlinesubtitle">');

document.write('<a href="attractions.html">Attraction Tickets</a><br>');
document.write('<a href="orlandoshopping.html">Shopping in Orlando</a><br>');
document.write('<a href="orlandorestaurants.html">Orlando Restaurants</a><br>');

document.write('</td></tr></table>');
document.write('<br>');
document.write('</div>');
}
document.write('<br>');


// 3rd NOTES AREA
   if (notes3 == "yes") {
document.write('<div class="announce">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" >');
document.write('<h2>Travel Extras</h2>');
document.write('</td></tr><tr><td class="inlinesubtitle">');

document.write('<a href="car hire.html">Car Rental</a><br>');
document.write('<a href="flights.html">Flights to Florida</a><br>');
document.write('<a href="insurance.html">Travel Insurance</a><br>');
document.write('<a href="airport_parking.html">Airport Parking</a><br>');
document.write('</td></tr></table>');
document.write('<br>');
document.write('</div>');
}





document.write('<img src="img/spacer.gif" width="'+sidewidth+'" height="'+pageheight+'"></a><br>');


//  End -->