<!-- Begin SIDEBAR

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var paragraph_1 	= "no"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"		// SHOW THE 2ND PARAGRAPH

var showRimage		= "1"		// SHOW A RANDOM SIDEBAR IMAGE
var linkedR		= "no"		// RANDOM IMAGE PAGE LINK
var showimage_1		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var showimage_2		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var showimage_3		= "yes"		// SHOW A SMALL SIDEBAR IMAGE

var linked		= "no"	// SIDEBAR IMAGE LINK

var spacing		= "yes"		// NUDGE SIDEBAR DOWN
var showdate		= "no"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "55"		// DATE Y LOCATION



// SIDEBAR LOCTION CODE - YOU CAN EDIT TOP OR L/R LOCATION
document.write('<div style="position: relative; left: 0px; top: -30px;">');

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Do You Feel<br>');
document.write('Overwhelmed?');
document.write('</center>');
document.write('<br>');

// SMALL PICTURE AREA
   if (showimage_1 == "yes") {
document.write('<center>');
document.write('<img src="picts/nap.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<br>');

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Do You Need<br>');
document.write('Direction?');
document.write('</center>');


document.write('<br></span><span class="sidebartext">');





// SMALL PICTURE AREA
   if (showimage_2 == "yes") {
document.write('<center>');
document.write('<img src="picts/direction.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<br>');
document.write('<br>');
document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Put Us On<br>');
document.write('Your Team!');
document.write('</center>');


document.write('<br></span><span class="sidebartext">');


// SMALL PICTURE AREA
   if (showimage_3 == "yes") {
document.write('<center>');
document.write('<img src="picts/superman.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<br>');
document.write('<br>');
document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Get the Results<br>');
document.write('You Want!');
document.write('</center>');


document.write('<br></span><span class="sidebartext">');


// SMALL PICTURE AREA
   if (showimage_3 == "yes") {
document.write('<center>');
document.write('<img src="picts/grades.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}


document.write('<br></span><span class="sidebartext">');

document.write('<br>');
document.write('<span class="sidebarbigtitle">');
document.write('<center>');
document.write('ASC is not affiliated<br>');
document.write('with any University<br>');
document.write('which is why we<br>');
document.write('are so efficient!');
document.write('</center><br>');

document.write('</div>');
// START DATE SCRIPT
   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>');

}


// -- END -->
