<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// THESE ARE SIDEBAR OPTIONS YOU CAN TURN ON AND OFF

var showimage_1		= "yes"		// SHOW 1ST SIDEBAR IMAGE
var showimage_2		= "no"		// SHOW 2ND SIDEBAR IMAGE
var showimage_3		= "no"		// SHOW 3RD SIDEBAR IMAGE
var showarea_1		= "yes"		// SHOW THE 1ST PARAGRAPH
var showarea_2		= "no"		// SHOW THE 2ND PARAGRAPH
var showarea_3		= "no"		// SHOW THE 3RD PARAGRAPH
var links		= "yes"		// SHOW SAMPLE LINKS IN THE SIDEBAR

var movedown		= "45"		// SIDEBAR SPACE FROM TOP


document.write('<TABLE cellpadding="2" cellspacing="0" width="100%" border="0" class="smalltext"><tr><td valign="top" align="center">');


// FIRST IMAGE AREA

   if (showimage_1 == "yes") {
document.write('<img src="picts/User_group_pic.jpg" border="0" width="150" height="125" class="borders"><br><br>');
}


// START FIRST TEXT AREA

   if (showarea_1 == "yes") {

document.write('<fieldset class="sidebar"><legend>');
document.write('Questions?</legend>');

document.write('For more information, contact:</a><br>');
document.write('<a href="mailto:KenW@dccadd.com?subject=Inventor LUG Request">Ken Wilson</a><br>');
document.write('512-758-7341</a><br>');
document.write('</fieldset>');
document.write('<br><br><br>');
}

// END FIRST TEXT AREA











// SECOND IMAGE AREA


   if (showimage_2 == "yes") {
document.write('<img src="picts/sidebar-2.jpg" border="0" width="150" height="100" class="borders"><br><br>');
}




// START SECOND TEXT AREA
   if (showarea_2 == "yes") {

document.write('<fieldset class="sidebar"><legend>');
document.write('Notes Title:</legend>');

document.write('This area is to add some notes or links. Edit the sidebar.js to update this text area. ');

document.write('<a href="about.htm">More...</a>');

document.write('</fieldset>');
document.write('<br><br><br>');
}
// END SECOND TEXT AREA










// SAMPLE LINKS AREA
   if (links == "yes") {

document.write('<fieldset class="sidebar"><legend>');
document.write('Inventor Links:</legend>');

document.write('<a href="http://www.inventorconnections.com/">Inventor Connections</a><br>');
document.write('<a href="http://www.3dcadtips.com/">3DCADTips</a><br>');
document.write('<a href="http://www.kwikmcad.com/">KWiK Mcad</a><br>');
document.write('<a href="http://autodeskinformer.blogs.com/">The Autodesk Informer Blog</a><br>');
document.write('<a href="http://www.sdotson.com/">sDotson</a><br>');
document.write('<a href="http://mfgcommunity.autodesk.com/">Manufacturing Community</a><br>');
document.write('<a href="http://labs.autodesk.com/">Autodesk Labs</a><br>');
document.write('<a href="http://beinginventive.typepad.com//">Being Inventive Blog</a><br>');

document.write('</fieldset>');
document.write('<br><br><br>');
}
// SAMPLE LINKS AREA











// THIRD IMAGE AREA


   if (showimage_3 == "yes") {
document.write('<img src="picts/sidebar-3.jpg" border="0" width="150" height="100" class="borders"><br><br>');
}




// START THIRD TEXT AREA
   if (showarea_3 == "yes") {

document.write('<fieldset class="sidebar"><legend>');
document.write('Notes Title:</legend>');

document.write('This area is to add some notes or links. Edit the sidebar.js to update this text area. ');

document.write('<a href="about.htm">More...</a>');

document.write('</fieldset>');
document.write('<br><br><br>');
}
// END THIRD TEXT AREA







document.write('</td></tr></table>');
//  End -->