// JavaScript Document


var Hshowproduct	= "yes"  // To show product or not (1)
var HItemNumber		= "105"  // Item number passed to PayPal (1)
var HThumbWidth		= "200"  // Width of thumbnail jpg 02)
var HThumbHeight	= "133"  // Height of thumbnail jpg (3)
var HPopHeight		= "267"  // Popup height of full size jpg as called by overLib (1)
var HPopWidth		= "400"  // Popup width of full size jpg as called by overLib (1)
var HThumbImage		= "products/SpecEd2.jpg"  // Thumbnail jpg image (1)
var HPopImage		= "products/PopSpecEd2.jpg"  // Popup jpg image (1)
var HPrice			= "20.00"  // Price of the item (2)
var HProductName	= "Wuvable Oaf #2 Special Edition"  // Product string (5)
var HProdText		= "Includes a vinyl 7-inch single of FEARCE, recorded by members of LIMP WRIST & NEEDLES! The b-side is an ETCHED PICTURE DISK featuring a hot mess zombie supermodel! Also comes with a TICKET STUB which shows you where to download an MP3 version of the song! And CUSTOM GUITAR PICKS & a GLOW-IN-THE-DARK cover, too! Signed and numbered edition of 200!" // Product description string (1)


if (Hshowproduct == "yes") {
document.write('<fieldset style="padding:5px;width:350px">');
document.write('<legend class="title">'+HProductName+'</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="'+HThumbWidth+'" height="'+HThumbHeight+'" valign="top">');
document.write('<a href="javascript:void(0)>;" onmouseover="return overlib(\'\', WIDTH, \'\'+HPopWidth+\'\', HEIGHT, \'\'+HPopHeight+\'\', FGBACKGROUND, \'\'+HPopImage+\'\', FGCOLOR, \'\', CAPTION, \'\'+HProductName+\'\', HAUTO, VAUTO);" onmouseout="return nd();">');
document.write('<img src="'+HThumbImage+'" alt="'+HProductName+'" width="'+HThumbWidth+'" height="'+HThumbHeight+'"></a></td>');
document.write('<td height="'+HThumbHeight+'" valign="top" class="nobreak"><div align="center"><br>Our Price: '); 
document.write('<span class="price">$'+HPrice+'</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="'+HProductName+'">');
document.write('<input type="hidden" name="item_number" value="'+HItemNumber+'">');
document.write('<input type="hidden" name="amount" value="'+HPrice+'">');
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">'+HProductName+'</div></td></tr>');
document.write('<tr><td colspan="2" valign="top" class="title4">'+HProdText+'</td></tr>');
document.write('</table>');
document.write('</fieldset>');
}
