<!-- Begin


var side_text = new Array ();
side_text[0] = "All the leaves are brown";
side_text[1] = "And the sky is grey";
side_text[2] = "I've been for a walk";
side_text[3] = "On a winter's day";
side_text[4] = "I'd be safe and warm";
side_text[5] = "If I was in L.A.";
side_text[6] = "California dreaming, On such a winter's day";
var i = Math.round(6*Math.random());


// NOTE: If you use a ' add a slash before it like this \'

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center">');

// FLASH CHANGER OPTIONS

var notes1		= "no"		// SHOW 1ST NOTES
var notes2		= "no"		// SHOW 2ND NOTES
var sidewidth		= "225"		// SIDEBAR WIDTH		
var pageheight		= "125"		// ADD HEIGHT TO ALL PAGES

var phone		= "no"		// SHOW PHONE NUMBER
var phoneLR		= "left"	// phone LEFT OR RIGHT
var phoneX		= "5"		// phone X LOCATION
var phoneY		= "5"		// phone Y LOCATION








// 1ST NOTES AREA

   if (notes1 == "yes") {
document.write('<fieldset><legend>');

document.write('Notes Area<br></legend>');

document.write(side_text[i]);


document.write('</fieldset>');
document.write('<br><br>');
}







// 2ND NOTES AREA

   if (notes2 == "yes") {
document.write('<fieldset><legend>');

document.write('Notes Area<br></legend>');

document.write(side_text[i+2]);


document.write('</fieldset>');
document.write('<br><br>');
}









// START SIDEBAR MENU //


document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>');


document.write('<a href="http://www.knappfamily.com/gallery/main.php" class="menuSidebar">  Knapp Gallery </a>');


document.write('<a href="http://www.knappfamily.com/" class="menuSidebar">Home</a>');


document.write('<a href="" class="menuSidebar">Don't Click This</a>');


document.write('</td></tr></table><br>');


// END SIDEBAR MENU //










// START PHONE NUMBER IN TOP MENU

   if (phone == "yes") {
document.write('<div id="phone-location" style="'+phoneLR+': '+phoneX+'px; POSITION: absolute; TOP: '+phoneY+'px" class="menu-note">');

document.write('Phone: 800-555-5555<br>');

document.write('</div>');
}








// 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 -->