var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Order</h2>');

texto[2]=new Array ('<br>To place an order you can send your information by email to the following address:<br><a href="mailto:comercial@lacasadelaceite.com" class="lista">comercial@lacasadelaceite.com</a><br>or fill in the annexed form.');

texto[3]=new Array ('<b>Products</b>');
texto[4]=new Array ('<b>Quantity</b>');
texto[5]=new Array ('<b>Price</b>');
texto[6]=new Array ('<b>Total</b>');
texto[7]=new Array ('40 ml. bottle');
texto[8]=new Array ('60 ml. bottle');
texto[9]=new Array ('250 ml. bottle');
texto[10]=new Array ('500 ml. bottle');
texto[11]=new Array ('750 ml. bottle');
texto[12]=new Array ('1 litre bottle');
texto[13]=new Array ('2 litre bottle');
texto[14]=new Array ('5 litre carafe');
texto[15]=new Array ('<b>TOTAL</b>');
texto[16]=new Array ('Note: Transport charges are not included.');
texto[17]=new Array ('');
texto[18]=new Array ('');

function textos (posicion,idioma)
{
	idi=-1;
	switch (idioma)
	{
		case 'e':idi=0;break;
		case 'i':idi=1;break;
		case 'f':idi=2;break;
		case 'a':idi=3;break;
	}
	document.write (texto[posicion][idi]);
}

