/*****************************************************************
*  popUpWin()
*  Questa Funzione visualizza il popup della registrazione
*  Richiamare le funzione in questo modo:
*  javascript:popUpWin('pagina.htm','nomeWin','width=500,height=550,scrollbars=yes');
****************************************************************/
/*
function popUpWin(theURL,theName,theSize) 
{
  var arrayImpost = theSize.split("=");
  var winWidth = parseInt(arrayImpost[1]);
  var winHeight = parseInt(arrayImpost[2]);
  var screenWidth = ( screen.width - winWidth ) / 2;
  var screenHeight = ( screen.height - winHeight ) / 2;
  window.open(theURL,theName,theSize + ",screenX=" + screenWidth + ",screenY=" + screenHeight + ",left=" + screenWidth + ",top=" + screenHeight + ",location=no,status=no,directories=no,toolbar=no");
}

*/

function Section(mycmb) 
{
	valori =  mycmb.options[mycmb.selectedIndex].value;
	ArrElementi = valori.split("|");
	//ArrElementi.length


	//location.href='/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.htm';

	if (ArrElementi.length==2) 
	{
		location.href='/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.htm';
	}
	else {
		if (ArrElementi.length==3) 
		{
			location.href='/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.liv1' + ArrElementi[2] + '.htm';
		}
		else 
		{
			if (ArrElementi.length==4) 
			{
				location.href='/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.liv1' + ArrElementi[2] + '.liv2' + ArrElementi[3] + '.htm';
			}
		}
	}
}

function SectionEn(mycmb) 
{
	valori =  mycmb.options[mycmb.selectedIndex].value;
	ArrElementi = valori.split("|");
	//ArrElementi.length


	//location.href='/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.htm';

	if (ArrElementi.length==2) 
	{
		location.href='/en/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.htm';
	}
	else {
		if (ArrElementi.length==3) 
		{
			location.href='/en/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.liv1' + ArrElementi[2] + '.htm';
		}
		else 
		{
			if (ArrElementi.length==4) 
			{
				location.href='/en/prodotti.prodotti.' + ArrElementi[0] + '.liv0' + ArrElementi[1] + '.liv1' + ArrElementi[2] + '.liv2' + ArrElementi[3] + '.htm';
			}
		}
	}
}
