<!-- 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 	= "no"		// SHOW THE 3ND PARAGRAPH
var showimage_1		= "yes"		// SHOW A SIDEBAR IMAGE 1
var showimage_2		= "no"		// SHOW A SIDEBAR IMAGE 2

var topspacing		= "8"		// 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 2 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<fieldset><legend>');

document.write('Remote Backups<br></legend>');

document.write('Establishing a regular online backup regimen will insure that important computer data is safeguarded year-round against threats like fires, theft, hurricanes, lightning strikes, power surges, employee error, viruses, and computer hardware failure.<br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 1



// SMALL PICTURE AREA

   if (showimage_1 == "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>');
}



// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_2 == "yes") {

document.write('<fieldset><legend>');

document.write('Quality Service<br></legend>');

document.write('Data Centers: Carrier-Grade Facilies, Redundant Power Grids, UPS, Generators, Redundant Environmental Control, Ansul Inergen Fire Supression <a href="contact.htm">Contact us...</a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 2



// SMALL PICTURE AREA 2

   if (showimage_2 == "yes") {

document.write('<br><center>');
document.write('<a href="index.html"><img src="picts/sidebar-right-sbs.jpg" border="0""></a><br>');
document.write('</center>');
document.write('<br><br>');
}





// START RIGHT SIDEBAR AREA PARAGRAPH 3 EDIT THIS AREA

   if (paragraph_3 == "yes") {

document.write('<fieldset><legend>');

document.write('Call Us Now<br></legend>');

document.write('Call and talk to one of our sales reps to quote backup needs. 813-988-1247<br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 3





document.write('</td></tr></table>');


// -- END -->