// JavaScript Document

// THIS IS FOR T-SHIRTS ONLY RIGHT NOW

var Ashowproduct	= "yes"  // To show product or not (1)
var AItemNumber		= "102"  // Item number passed to PayPal (1)
var AThumbWidth		= "200"  // Width of thumbnail jpg 02)
var AThumbHeight	= "133"  // Height of thumbnail jpg (3)
var APopHeight		= "267"  // Popup height of full size jpg as called by overLib (1)
var APopWidth		= "400"  // Popup width of full size jpg as called by overLib (1)
var AThumbImage		= "products/PeeShy.jpg"  // Thumbnail jpg image (1)
var APopImage		= "products/PopPeeShy.jpg"  // Popup jpg image (1)
var APrice			= "3.00"  // Price of the item (2)
var AProductName	= "Wuvable Oaf Pee-Shy Folio Comic"  // Product string (5)
var AProductDesc	= "Wuvable Oaf Pee-Shy Folio Comic"  // Product description string
var AProdText		= "A special folio edition of the first published Oaf story, \"Wuvable Oaf & the Troff Pig\", printed on one of three yellowishly hued Fabriano art papers.  This ultra kinky edition includes a recipe card insert for Troffie\'s favorite sorbet dessert as cribbed from Paul Mayor of \"The Beards\".  WARNING: NOT FOR THE PRUDISHLY SQUEAMISH!  Two folded pages with wraparound cover." // Product description string (1)

			   
if (Ashowproduct == "yes") {
document.write('<fieldset style="padding:5px;width:350px">');
document.write('<legend class="title">'+AProductName+'</legend>');
document.write('<table width="100%" border="0">');
document.write('<tr><td rowspan="3" width="1"><img src="picts/spacer.gif" border="0" width="1" height="275"></td>');
document.write('<td width="'+AThumbWidth+'" height="'+AThumbHeight+'" valign="top">');
document.write('<a href="javascript:void(0)>;" onmouseover="return overlib(\'\', WIDTH, \'\'+APopWidth+\'\', HEIGHT, \'\'+APopHeight+\'\', FGBACKGROUND, \'\'+APopImage+\'\', FGCOLOR, \'\', CAPTION, \'\'+AProductName+\'\', HAUTO, VAUTO);" onmouseout="return nd();">');
document.write('<img src="'+AThumbImage+'" alt="'+AProductName+'" width="'+AThumbWidth+'" height="'+AThumbHeight+'"></a></td>');
document.write('<td height="'+AThumbHeight+'" valign="top" class="nobreak"><div align="center"><br>Our Price: '); 
document.write('<span class="price">$'+APrice+'</span>');
document.write('<br><br>');
document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
document.write('<table><tbody><tr><td>');
document.write('</td></tr></tbody></table>');
document.write('<br>');
document.write('<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">');
document.write('<input type="hidden" name="add" value="1">');
document.write('<input type="hidden" name="cmd" value="_cart">');
document.write('<input type="hidden" name="business" value="eluce11@hotmail.com">');
document.write('<input type="hidden" name="item_name" value="'+AProductName+'">');
document.write('<input type="hidden" name="item_number" value="'+AItemNumber+'">');
document.write('<input type="hidden" name="amount" value="'+APrice+'">');
document.write('<input type="hidden" name="no_shipping" value="2">');
document.write('<input type="hidden" name="return" value="http://www.wuvableoaf.com/thanks-payment.htm">');
document.write('<input type="hidden" name="no_note" value="1">');
document.write('<input type="hidden" name="currency_code" value="USD">');
document.write('<input type="hidden" name="weight" value="1">');
document.write('<input type="hidden" name="weight_unit" value="lbs">');
document.write('<input type="hidden" name="tax" value="0.00">');
document.write('<input type="hidden" name="lc" value="US">');
document.write('<input type="hidden" name="bn" value="PP-ShopCartBF"></div>');
document.write('</form></td></tr>');
document.write('<tr><td height="25" colspan="2" valign="top" class="subtitle">');
document.write('<div align="left">'+AProductDesc+'</div></td></tr>');
document.write('<tr><td colspan="2" valign="top" class="title4">'+AProdText+'</td></tr>');
document.write('</table>');
document.write('</fieldset>');
}

