var paragraph_1 	= "no"			// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"			// SHOW THE 2ND PARAGRAPH

var Rimagephrase	= "yes"			// SHOW PHRASE UNDER RANDOM IMAGE
var showimage		= "yes"			// SHOW A SMALL SIDEBAR IMAGE
var linked			= "index.html"	// SIDEBAR IMAGE LINK

var spacing			= "0"			// NUDGE SIDEBAR DOWN
var showdate		= "yes"			// SHOW THE DATE ON THE PAGE
var dateLR			= "right"		// DATE LEFT OR RIGHT
var dateX			= "10"			// DATE X LOCATION
var dateY			= "107"			// DATE Y LOCATION


document.write('<div style="position: relative; left: 0px; top: -15px;">')




   if (paragraph_1 == "yes") {

document.write('<span class="sidebartitle">')

document.write('TEXT TITLE')

document.write('<br></span><span class="sidebartext">')

document.write('TEXT<br>')

document.write('TEXT<br>')

document.write('</span><br><br>')

}




   if (paragraph_2 == "yes") {

document.write('<span class="sidebartitle">')

document.write('TEXT TITLE')

document.write('<br></span><span class="sidebartext">')

document.write('TEXT')

document.write('</span><br><br>')

}


document.write('<center>');

   if (showimage == "yes") {

document.write('<a href="index.html"><IMG SRC="picts/sidebar-img.gif" border="0" height="100" width="150"></a><br><br>')

}


document.write('</div>')


   if (Rimagephrase == "yes") {

document.write('<span class="sidebartext">');

document.write('"Lifestyle solutions for<br>');

document.write('young people with disabilities."');

document.write('<br></span>');

}


document.write('<br><br>');
document.write('</center>');


   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}
