var ShipImage = new Array('shipgree.gif','shipcyan.gif','shipblue.gif','shipred.gif','shipyell.gif','shippurp.gif');
var ShipArea = new Array('UK <font face="Arial" size=-2>(includes VAT/IVA)</font>','North America, USA, Canada and Mexico','Caribbean Islands','UK, West Europe, Australia, Far East and Latin America','Africa, India, Middle East, East Europe and Russia','Rest of World');
var ShipZone = 0;

Currency = GetCookie("CurrencyUsed");
if( Currency == null )
     Currency = DefaultCurrency;
		 
var ShipZone1Factor=1.044
var ShipZone2Factor=0.969
var ShipZone3Factor=0.982
var ShipZone4Factor=1.0
var ShipZone5Factor=1.042
var ShipZone6Factor=1000

var BasePrice = PriceArray[ProductNumber];
var DisplayPrice = new Array(BasePrice*ShipZone1Factor,BasePrice*ShipZone2Factor,BasePrice*ShipZone3Factor,BasePrice*ShipZone4Factor,BasePrice*ShipZone5Factor,BasePrice*ShipZone6Factor);

//document.write('<table width="760" border="3" 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 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<=4; 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>');


