<!-- Begin

var notes1		= "yes"		// SHOW 1ST NOTES
var notes2		= "no"		// SHOW 2ND NOTES
var sidewidth		= "175"		// SIDEBAR WIDTH - ALSO EDIT THE CSS SIDEBAR WIDTH
var pageheight		= "100"		// ADD HEIGHT TO ALL PAGES

var imagewidth		= "125"		// WIDTH OF THE SIDEBAR IMAGES
var imageheight		= "83"		// HEIGHT OF THE SIDEBAR IMAGES
var spacerheight	= "12"		// SPACING BETWEEN IMAGES

document.write('<br>');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center">');


// 1ST NOTES AREA

   if (notes1 == "yes") {
document.write('<fieldset><legend>');

document.write('SPECIALS<br></legend>');

document.write('Find out about our monthly specials - just click here <a href="specials.htm">Specials...</a><br>');

document.write('</fieldset>');
document.write('<br><br>');
}

// SIDEBAR IMAGES //

document.write('<a href="contact.htm"><img src="picts/sidebar-2.jpg" border="0" width="'+imagewidth+'" height="'+imageheight+'" class="Galborder"></a><br>');

document.write('<img src="picts/spacer.gif" width="5" height="'+spacerheight+'"><br>');

document.write('<br>');


// 2ND NOTES AREA

   if (notes2 == "yes") {
document.write('<fieldset><legend>');

document.write('Notes<br></legend>');

document.write('you can put more here <a href="contact.htm">Contact...</a><br>');

document.write('</fieldset>');
document.write('<br>');
}















// PAGEHEIGHT AND WIDTH SPACER (EDIT VARIABLES AT THE TOP)

document.write('<IMG SRC="picts/spacer.gif" HEIGHT="'+pageheight+'" WIDTH="'+sidewidth+'" border="0"><br>');

document.write('</td></tr></table>');


//  End -->