<!-- Begin

// 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 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH
var paragraph_3 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_4 	= "yes"		// SHOW THE 2ND PARAGRAPH
var showimage		= "no"		// SHOW A SIDEBAR IMAGE

var topspacing		= "10"		// NUDGE SIDEBAR DOWN
var sidewidth		= "125"		// SIDEBAR WIDTH





// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');
document.write('<table cellpadding="5" cellspacing="10" border="0" class="sidebartext-right"><tr><td>');



// START RIGHT SIDEBAR AREA PARAGRAPH 1 

   if (paragraph_1 == "yes") {

document.write('<fieldset><legend>');

document.write('Digital Art &<br>Animation<br></legend>');

document.write('Digital Arts and Animation offers students preparation in four concentration areas: 3D Animation, Entertainment Design, Game Design, and 3D Modeling. <a href="program_daa.htm"><i>Read more...</i></a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 1



// START RIGHT SIDEBAR AREA PARAGRAPH 2

   if (paragraph_2 == "yes") {

document.write('<fieldset><legend>');

document.write('Digital Audio<br>Technology<br></legend>');

document.write('DAT program offers students who seek professional careers in the audio industry the opportunity to focus on audio production, audio product manufacturing, or healing and transformation through sound. <a href="program_dat.htm"><i>Read more...</i></a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 2




// START RIGHT SIDEBAR AREA PARAGRAPH 3

   if (paragraph_3 == "yes") {

document.write('<fieldset><legend>');

document.write('Engineering<br></legend>');

document.write('Students get hands-on experience working with faculty in small groups; benefit from an educational environment that focus on learning, blends theory and practice, and integrates art and engineering. <a href="program_eng.htm"><br><i>Read more...</i></a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 3




// START RIGHT SIDEBAR AREA PARAGRAPH 4

   if (paragraph_4 == "yes") {

document.write('<fieldset><legend>');

document.write('Fire Science<br></legend>');

document.write('The program gives fire service personnel the chance to complete a Bachelor of Science degree in Fire Science through distance learning. <a href="FireScience.html"><i>Read more...</i></a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 4








// SMALL PICTURE AREA

   if (showimage == "yes") {

document.write('<br><center>');
document.write('<a href="index.html"><img src="picts/sidebar-right.jpg" border="0" class="borders"></a><br>');
document.write('</center>');
document.write('<br><br>');
}







document.write('</td></tr></table>');


// -- END -->