var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Products</h2>');

texto[2]=new Array ('<br><li><a href="producto04.htm" class="lista">40 ml. bottle</a><li><a href="producto06.htm" class="lista">60 ml. bottle</a><li><a href="producto0.htm" class="lista">250 ml. bottle</a><li><a href="producto1.htm" class="lista">500 ml. bottle</a><li><a href="producto2.htm" class="lista">750 ml. bottle</a><li><a href="producto3.htm" class="lista">1 litre bottle</a><li><a href="producto4.htm" class="lista">2 litre bottle</a><li><a href="producto5.htm" class="lista">5 litre carafe</a>');

texto[3]=new Array ('<dl><u>TYPES OF OLIVE OIL:<br><br></u><dt><b>Virgin Olive Oil and Extra Virgin Olive Oil</b> (WHICH WE PRODUCE)<dd>Oil obtained by squeezing the olive through physical procedures.<br><br><dt><b>Olive Oil  </b><dd>Combination of refined oil (that is treated chemically) with virgin oil.<br><br><dt><b>Olive-residue Oil</b><dd>Extracted from the olive residue that is left in the mill, using all types of measures as well as mechanical ones.</dl>');

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]);
}

