<!-- Begin SIDEBAR SIZES AND OPTIONS CODE

// ONLY USE lowercase FOR ALL OPTIONS

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON



var paypal_email	= "wendy@wendyarts.com"	// USE YOUR PAYPAL EMAIL HERE
var showcart		= "yes"				// SHOW VIEW CART BUTTON
var align		= "left"			// ALIGN SIDEBAR left/center
var width		= "100"				// WIDTH OF THE SIDEBAR
var showlogo		= "no"				// SHOW SIDEBAR LOGO
var showlink		= "index.html"			// LOGO PAGE LINK




document.write('<div id="sidebar">')
document.write('<TABLE cellpadding="0" cellspacing="0" width="'+width+'" class="printhide"><tr><td align="'+align+'">')





// VIEW CART AREA
   if (showcart == "yes") {
document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" class="formmargin">');
document.write('<input type="hidden" name="cmd" value="_cart">');
document.write('<input type="hidden" name="business" value="'+paypal_email+'">');
document.write('<input type="image" src="picts/cart-viewoff.gif" border="0" name="viewcart" alt="View Cart" onmouseover="this.src=\'picts/cart-viewon.gif\'" onmouseout="this.src=\'picts/cart-viewoff.gif\'">');
document.write('<input type="hidden" name="display" value="1">');
document.write('</form>');
document.write('<br>');
}





// SMALL LOGO AREA
   if (showlogo == "yes") {
document.write('<a href="'+showlink+'"><img src="picts/sidebar_logo.jpg" border="0"></a>');
document.write('<br>');
}






document.write('</td></tr></table>')
document.write('</div>')




//  End -->