function BuyPage() {
	BuyLine("True Toolbar", "2.7.2", 12.99, "TrueToolbar",  "down1");
	BuyLine("Space Reclaimer", "2.5.4", 9.99, "SpaceReclaimer", "down2");
	BuyLine("System Monitor Pro", "2.2", 19.99, "SysMonitorPro", "down1");
	BuyLine("System Monitor", "2.2", 9.99, "SysMonitor", "down2");
	BuyLine("Pocket 3D Blocks", "2.2", 9.99, "3DBlocks", "down1");
	BuyLine1("Screen Capture  Utility", "1.3", 4.99, "ScrCapture", "down2", "ScrCapture");
	BuyLine1("Dream  Cars Theme Pack", "1.1", 2.99, "DCTP", "down1", "DC_Theme_Pack");
	BuyLine1("Wild West Nature Theme Pack", "3.1", 2.99, "WWNTP", "down2", "WWN_Theme_Pack");
}

function BuyLine( Title, Version, Price, Page, pCls) {
	document.write('<TR>');
	document.write('<TD class=' + pCls + ' width="19" height="8"></TD>');
	document.write('<TD class=' + pCls + ' width="301" height="8"><a href="' + Page + '.html">' + Title + '</a></TD>');
	document.write('<TD class=' + pCls + ' align=middle width="65" height="8">' + Version + '</TD>');
	document.write('<TD class=' + pCls + ' align=middle width="54" height="8">$' + Price + '</TD>');
	document.write('<TD class=' + pCls + ' align=center width="98" height="8">');
		document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
		document.write('<input type="hidden" name="cmd" value="_cart">');
		document.write('<input type="hidden" name="business" value="sales@valksoft.com">');
		document.write('<input type="hidden" name="item_name" value="' + Title + '">');
//		document.write('<input type="hidden" name="item_number" value="7">');
		document.write('<input type="hidden" name="amount" value="' + Price + '">');
		document.write('<input type="hidden" name="return" value="http://www.valksoft.com/order.html">');
		document.write('<input type="hidden" name="cancel_return" value="http://www.valksoft.com/order.html">');
		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="add" value="1">');
		document.write('<input type="image" src="images/PayPal_Add.gif" border="0" name="submit" alt="Add item to shopping cart" align="center">');
		document.write('</form>');
		document.write('</TD>');
	document.write('</TR>');
}

function BuyLine1( Title, Version, Price, Page, pCls, htmOK) {
	document.write('<TR>');
	document.write('<TD class=' + pCls + ' width="19" height="8"></TD>');
	document.write('<TD class=' + pCls + ' width="301" height="8"><a href="' + Page + '.html">' + Title + '</a></TD>');
	document.write('<TD class=' + pCls + ' align=middle width="65" height="8">' + Version + '</TD>');
	document.write('<TD class=' + pCls + ' align=middle width="54" height="8">$' + Price + '</TD>');
	document.write('<TD class=' + pCls + ' align=center width="98" height="8">');
		document.write('<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
		document.write('<input type="hidden" name="cmd" value="_cart">');
		document.write('<input type="hidden" name="business" value="sales@valksoft.com">');
		document.write('<input type="hidden" name="item_name" value="' + Title + '">');
//		document.write('<input type="hidden" name="item_number" value="7">');
		document.write('<input type="hidden" name="amount" value="' + Price + '">');
		document.write('<input type="hidden" name="return" value="http://dnuser7245:pG48c6LD@www.valksoft.com/downloads/'+ htmOK +'.zip">');
		document.write('<input type="hidden" name="cancel_return" value="http://www.valksoft.com/order.html">');
		document.write('<input type="hidden" name="no_note" value="1">');
		document.write('<input type="hidden" name="currency_code" value="USD">');
		document.write('<input type="image" src="images/PayPal_Add.gif" border="0" name="submit" alt="Add item to shopping cart" align="center">');
		document.write('<input type="hidden" name="add" value="1">');
		document.write('</form>');
		document.write('</TD>');
	document.write('</TR>');
}
