var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Pedido</h2>');

texto[2]=new Array ('<br>Para realizar un pedido puede<br>enviar sus datos por correo<br>electrónico a la dirección:<br><a href="mailto:comercial@lacasadelaceite.com" class="lista">comercial@lacasadelaceite.com</a><br>o utilizar el formulario adjunto.<br>');

texto[3]=new Array ('<b>Producto</b>');
texto[4]=new Array ('<b>Cantidad</b>');
texto[5]=new Array ('<b>Precio</b>');
texto[6]=new Array ('<b>Total</b>');
texto[7]=new Array ('Botella PET 40 ml.');
texto[8]=new Array ('Botella cristal 60 ml.');
texto[9]=new Array ('Botella cristal 250 ml.');
texto[10]=new Array ('Botella cristal 500 ml.');
texto[11]=new Array ('Botella cristal 750 ml.');
texto[12]=new Array ('Botella PET 1 Litro.');
texto[13]=new Array ('Botella PET 2 Litros.');
texto[14]=new Array ('Garrafa PET 5 Litros.');
texto[15]=new Array ('<b>TOTAL</b>');
texto[16]=new Array ('Nota: Portes no incluidos.&nbsp;&nbsp;&nbsp;');
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]);
}
