function make_buysection()
{
   //make_form_ifulfill();
   make_form_paypal();
   make_form_mailorder();
   make_buylinks();
}



function make_form_ifulfill()
{
   bi = "";
   bi = bi + "<form name=\"ifulfillform\" action=\"https://www.ifulfill.com/addproduct.asp\" method=\"post\" TARGET=\"_top\">";
   bi = bi + "<input type=\"hidden\" name=\"ORDER_FLAG\" value=\"1\">";
   bi = bi + "<input type=\"hidden\" name=\"PRODUCT_ID\" value=\"" + cd_iffnumber + "\">";
   bi = bi + "<input type=\"hidden\" name=\"Quantity\" value=\"1\">";
   bi = bi + "</form>";
   form_ifulfill = bi;
}


function make_form_paypal()
{
   if(cd_ship == "--") { ppnoshipping = 1; } else { ppnoshipping = 0; }

   bp = "";
   bp = bp + "<form name=\"paypalform\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" TARGET=\"_top\">";
   bp = bp + "<input type=\"hidden\" name=\"cmd\" value=\"_xclick\">";
   bp = bp + "<input type=\"hidden\" name=\"business\" value=\"jbarta@pagetutor.com\">";
   bp = bp + "<input type=\"hidden\" name=\"item_name\" value=\"" + cd_desc3 + "\">";
   bp = bp + "<input type=\"hidden\" name=\"no_shipping\" value=\"" + ppnoshipping + "\">";
   bp = bp + "<input type=\"hidden\" name=\"amount\" value=\"" + cd_subtotal + "\">";
   //bp = bp + "<input type=\"hidden\" name=\"image_url\" value=\"http://www.pagetutor.com/membership/ptlogo_paypal.gif\">";
   bp = bp + "<input type=\"hidden\" name=\"return\" value=\"http://www.pagetutor.com/membership/thank" + ptmem + "you.html\">";
   bp = bp + "<input type=\"hidden\" name=\"cancel_return\" value=\"http://www.pagetutor.com/membership/index.html\">";
   bp = bp + "<input type=\"hidden\" name=\"currency_code\" value=\"USD\">";
if( cd_ship == "--" ) { cd_ship2 = "0.00"; } else { cd_ship2 = cd_ship; }
   bp = bp + "<input type=\"hidden\" name=\"shipping\" value=\"" + cd_ship2 + "\">";
   bp = bp + "</form>";
   form_paypal = bp;
}

function make_form_mailorder()
{
   bm = "";
   bm = bm + "mail order";
   form_mailorder = bm;
}





function make_buylinks()
{
   var bl = "";
   bl = bl + "<TABLE CELLSPACING=\"0\" CELLPADDING=\"0\" BORDER=\"0\">";
   bl = bl + "<TR><TD><A HREF=\"javascr"+"ipt:document.paypalform.submit()\"   onMouseOver=\"top.status=\'Order online\';return true\"               onMouseOut=\"top.status=\' \';return true\"><IMG SRC=\"buylink2.gif\" width=\"140\" height=\"66\" border=\"0\" align=\"left\"></A><A HREF=\"javascr"+"ipt:document.paypalform.submit()\" CLASS=\"buylinkback\" onMouseOver=\"top.status=\'Order online\';return true\"               onMouseOut=\"top.status=\' \';return true\">Order online</A> - Pay using your credit or debit card, your checking account<span style=\"cursor:pointer\;color:#0000ff\" onClick=\"top.explain_eCheck()\">*</span> or your existing PayPal account. <i>It is not necessary to have a Paypal account to pay through PayPal, although after the transaction you will be asked if you'd like to open an account.</i></TD></TR>";
   bl = bl + "<TR><TD><IMG SRC=\"empty.gif\" WIDTH=\"1\" HEIGHT=\"12\" ALT=\"\" BORDER=\"0\"></TD></TR>";
   bl = bl + "<TR><TD><A HREF=\"javascr"+"ipt:top.mailorderpage()\"            onMouseOver=\"top.status=\'Order by regular mail/post\';return true\" onMouseOut=\"top.status=\' \';return true\"><IMG SRC=\"buylink3.gif\" width=\"140\" height=\"70\" border=\"0\" align=\"left\"></A><A HREF=\"javascr"+"ipt:top.mailorderpage()\"          CLASS=\"buylinkback\" onMouseOver=\"top.status=\'Order by regular mail/post\';return true\" onMouseOut=\"top.status=\' \';return true\">Order by regular mail/post</A> - If you wish to send payment by regular mail, then fill out the order form on the next page. When you\'re done, a printable order form will be created for you. Print it out, include your payment (personal check, money order, cash) and drop it in the mail. All orders are processed within 24hrs of receipt unless notified otherwise.</TD></TR>";
   bl = bl + "<TR><TD><IMG SRC=\"empty.gif\" WIDTH=\"1\" HEIGHT=\"12\" ALT=\"\" BORDER=\"0\"></TD></TR>";

   bl = bl + "<TR><TD><A HREF=\"javascr"+"ipt:top.goWesternUnion()\"           onMouseOver=\"top.status=\'Order by Western Union\';return true\"     onMouseOut=\"top.status=\' \';return true\"><IMG SRC=\"buylink4.gif\" width=\"140\" height=\"55\" border=\"0\" align=\"left\"></A><A HREF=\"javascr"+"ipt:top.goWesternUnion()\"         CLASS=\"buylinkback\" onMouseOver=\"top.status=\'Order by Western Union\';return true\"     onMouseOut=\"top.status=\' \';return true\">Order by Western Union</A> - If you live in a country that's not supported by PayPal, or if you do not wish to pay by credit card or check, you are welcome to submit payment via Western Union. It's very reliable, very fast and there are many thousands of Western Union outlets in every corner of the globe.</TD></TR>";
   //bl = bl + "<TR><TD><A HREF=\"javascr"+"ipt:top.goWesternUnion()\" style=\"text-decoration:none\;background-color:#f8f8f8\">&nbsp;</A></TD></TR>";

   bl = bl + "</TABLE>";

   //bl = bl + form_ifulfill;
   bl = bl + form_paypal;

   buylinks = bl;
}



function explain_eCheck()
{
   alert("eCheck is a method of payment whereby funds are electronically deducted from your checking account just as if you had written a regular check.\n\nPayment by eCheck is handled through PayPal. In order to pay by eCheck, it is first necessary to sign up for a Paypal account (www.paypal.com) and supply your checking account information. That information is then verfied which takes 2-3 days. Once your checking account is verified, payment by eCheck becomes an option available to you.")
}


