var ShipImage = new Array('shipgree.gif','shipcyan.gif','shipblue.gif','shippurp.gif','shipred.gif','shipyell.gif');
var ShipArea = new Array('UK <font face="Arial" size=-2>(includes VAT/IVA)</font>','EU <font face="Arial" size=-2>(includes VAT/IVA)</font>','Europe Outside EU','USA / Canada / Mexico / P.R.','Australia / Asia / Latin America','Rest of World');
var ShipZone = 0;

Currency = GetCookie("CurrencyUsed");
if( Currency == null )
     Currency = "GBP";

var BasePrice = PriceArray[ProductNumber];
var DisplayPrice = new Array(BasePrice*1.127,BasePrice*1.127,BasePrice*0.989,BasePrice*1,BasePrice*1.02,BasePrice*1.05);

document.write('<table width="760" border="0" cellpadding="0" cellspacing="0" class="bodytext"><tr><td><table width="760" border="0" cellpadding="0" cellspacing="0"><tr><td valign="top" align="left"><img alt="Visa, Master, Paypal, Bank Transfer or Western Union" src="http://www.aareff.com/payment-forms.jpg"></td><td align="center">');

document.write('<table border=0 cellpadding=0 cellspacing=0 width=600 class="bodytext">');
document.write('<tr>');
document.write('<td colspan=2><b>' + ProductName + '</b><i> (' + ProductStockCode + ')</i></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td colspan=2>Add to cart by clicking on colored BUY button. <A href="http://www.aareff.com/managecart.htm">GO TO CART</A> Currency: <b><A href="javascript:location.reload(true)" onclick="SetEUR()">Euro</A> / <A href="javascript:location.reload(true)" onclick="SetUSD()">US Dollar</A> / <A href="javascript:location.reload(true)" onclick="SetGBP()">UK Pound</A></b></td>');
document.write('</tr>');

for (ShipZone=1; ShipZone<=5; ShipZone++)
	{
	document.write('<tr>');
	document.write('<FORM NAME=order ACTION="http://www.aareff.com/managecart.htm" onSubmit="AddToCart(this);">');
	document.write('<input type=hidden name=PRICE value="' + (moneyFormat(CurrencyOffsetFactor*DisplayPrice[ShipZone])) + '">');
	document.write('<input type=hidden name=NAME value="' + ProductName + '">');
	document.write('<input type=hidden name=ID_NUM value="' + ProductStockCode + '">');
	document.write('<td width=400><input type="image" src="http://www.aareff.com/' + ShipImage[ShipZone] + '" border=0 value="Add to Cart" align=top> ' + ShipArea[ShipZone] + '</td>');
	document.write('<td width=200 align=right>');
	
	if ( Currency == 'EUR' ) {
    document.write((moneyFormat((EURExRate*DisplayPrice[ShipZone]))) + ' <b>EUR</b> ');
	  }

	if ( Currency == 'USD' ) {
   	document.write((moneyFormat((USDExRate*DisplayPrice[ShipZone]))) + ' <b>USD</b> ');
	  }

	if ( Currency == 'GBP' ) {
   	document.write((moneyFormat((GBPExRate*DisplayPrice[ShipZone]))) + ' <b>GBP</b> ');
	  }

	document.write('<input type="image" src="http://www.aareff.com/' + ShipImage[ShipZone] + '" border=0 value="Add to Cart" align=top></td>');
	document.write('</FORM>');
	document.write('</tr>');
	}
document.write('</table>');
document.write('<BR>');

document.write('</td></tr></table>');

