// JavaScript Document
function create_add_to_cart_form(qtyNsize, itemNmaterial, the_item_price) {
	the_form = '';
  the_form = the_form + ('<form name="addtocart" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
  the_form = the_form + ('<input name="submit" type="image" src="http://www.deSIGNerySigns.com/images/cart_add.jpg" alt="add to cart" width="103" height="21" />');
  the_form = the_form + ('<input type="hidden" name="add" value="1" />');
  the_form = the_form + ('<input type="hidden" name="cmd" value="_cart" />');
  the_form = the_form + ('<input type="hidden" name="business" value="billjr@deSIGNerySigns.com" />');
  the_form = the_form + ('<input type="hidden" name="item_name" value="' + qtyNsize + '" />');
  the_form = the_form + ('<input type="hidden" name="item_number" value="' + itemNmaterial + '" />');
  the_form = the_form + ('<input type="hidden" name="amount" value="' + the_item_price + '" />');
  the_form = the_form + ('<input type="hidden" name="return" value="http://www.deSIGNerySigns.com/thanks.htm">');
  the_form = the_form + ('<input type="hidden" name="cancel_return" value="http://www.deSIGNerySigns.com/cancel.htm">');
  the_form = the_form + ('<input type="hidden" name="no_note" value="1">');
  the_form = the_form + ('<input type="hidden" name="currency_code" value="USD" />');
  the_form = the_form + ('  </form>');
  document.getElementById("cartButtons").innerHTML= the_form + view_cart_button();
}
function view_cart_button() {
  the_form = '';
  the_form = the_form + (' <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
  the_form = the_form + ('<input type="hidden" name="cmd" value="_cart" />');
  the_form = the_form + ('<input type="hidden" name="business" value="billjr@deSIGNerySigns.com" />');
  the_form = the_form + ('<input type="hidden" name="display" value="1" /> ');
  the_form = the_form + ('<input name="submit" type="image" src="http://www.deSIGNerySigns.com/images/cart_view.jpg" alt="view cart" width="103" height="21" />');
  the_form = the_form + ('  </form>');
  return(the_form);
}
