function fnChangeLineaProdotto()
{
	if ( document.forms["mainForm"].elements["LineaProdotto"].selectedIndex != 0 )
	{
		document.forms["mainForm"].action = "LineaProdotto.asp";
		document.forms["mainForm"].submit();
	}
}

function fnGoToLineaProdotto ( pintLineaProdotto )
{
	document.forms["mainForm"].elements["LineaProdotto"].selectedIndex = pintLineaProdotto;
	document.forms["mainForm"].action = "LineaProdotto.asp";
	document.forms["mainForm"].submit();
}

function fnRicercaProdottoDaIniziale ( pstrIniziale )
{
	document.forms["mainForm"].elements["LineaProdotto"].selectedIndex	= 0;
	document.forms["mainForm"].elements["RicercaTesto"].value			= "";
	document.forms["mainForm"].elements["InizialeProdotto"].value		= pstrIniziale;
	document.forms["mainForm"].action = "RicercaProdotto.asp";
	document.forms["mainForm"].submit();
}

function fnRicercaProdottoDaTesto()
{
	if ( ( document.forms["mainForm"].elements["RicercaTesto"].value ).length > 0 )
	{
		document.forms["mainForm"].elements["LineaProdotto"].selectedIndex	= 0;
		document.forms["mainForm"].action = "RicercaProdotto.asp";
		document.forms["mainForm"].submit();
	}
}