var texto=new Array ();

texto[0]=new Array ('');

texto[1]=new Array ('<H2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Health</h2>');

texto[2]=new Array ('<br><b>Extra Virgin Olive Oil</b> is the main actor in a healthy Mediterranean diet.<br>');

texto[3]=new Array ('<b>OIL AND HEALTH</b><br><br>EXTRA VIRGIN olive oil is the only oil that is consumed in its natural state, thus maintaining all the olive&rsquo;s components and chemical, biological and organoleptic properties intact.<br><br>There are two different parts in the composition of oil:<dl><dt><b>Saponifiable</b><dd>98% of the oil, where we find fatty acid, about 80% of which is Oleic Oil (mono-unsaturated).<dt><b>Unsaponifiable </b><dd>2% of the oil, it consists of many substances, antioxidants, vitamins,.... Although it is simply 2% of the substance, it determines its colour, taste, smell, aroma, as well as most of the benefits for health.</dl>Every day new benefits for the prevention or cure of certain diseases are found in Extra Virgin Olive Oil. It is beneficial for: cholesterol level, coronary diseases, Hypertension, Diabetes, Obesity, Arteriosclerosis and even some types of cancer (breast, colon or prostate)');

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]);
}

