// JavaScript Document


var Eshowproduct	= "yes"  // To show product or not (1)
var EItemNumber		= "106"  // Item number passed to PayPal (1)
var EThumbWidth		= "200"  // Width of thumbnail jpg 02)
var EThumbHeight	= "133"  // Height of thumbnail jpg (3)
var EPopHeight		= "400"  // Popup height of full size jpg as called by overLib (1)
var EPopWidth		= "267"  // Popup width of full size jpg as called by overLib (1)
var EThumbImage		= "products/RegEd1.jpg"  // Thumbnail jpg image (1)
var EPopImage		= "products/PopRegEd1.jpg"  // Popup jpg image (1)
var EPrice			= "3.95"  // Price of the item (2)
var EProductName	= "Wuvable Oaf #1 Comic Book"  // Product string (5)
var EProdText		= "Oaf's Story Starts HERE!  This is the REGULAR edition of the first issue! It's all about ME! And the kitties! And Papa too! It even shows my birth, which is kinda gross...!" // Prodeuct description string (1)


if (Eshowproduct == "yes") {
document.write('<fieldset style="padding:5px;width:350px">');
document.write('<legend class="title">'+EProductName+'</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="'+EThumbWidth+'" height="'+EThumbHeight+'" valign="top">');
document.write('<a href="javascript:void(0)>;" onmouseover="return overlib(\'\', WIDTH, \'\'+EPopWidth+\'\', HEIGHT, \'\'+EPopHeight+\'\', FGBACKGROUND, \'\'+EPopImage+\'\', FGCOLOR, \'\', CAPTION, \'\'+EProductName+\'\', HAUTO, VAUTO);" onmouseout="return nd();">');
document.write('<img src="'+EThumbImage+'" alt="'+EProductName+'" width="'+EThumbWidth+'" height="'+EThumbHeight+'"></a></td>');
document.write('<td height="'+EThumbHeight+'" valign="top" class="nobreak"><div align="center"><br>Our Price: '); 
document.write('<span class="price">$'+EPrice+'</span>');
document.write('<br><br></div>');
document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
document.write('<div align="center">');
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="'+EProductName+'">');
document.write('<input type="hidden" name="item_number" value="'+EItemNumber+'">');
document.write('<input type="hidden" name="amount" value="'+EPrice+'">');
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">'+EProductName+'</div></td></tr>');
document.write('<tr><td colspan="2" valign="top" class="title4">'+EProdText+'</td></tr>');
document.write('</table>');
document.write('</fieldset>');
}
