<!--	
function fnMercato()
{
	var intIDSubCatalogo	= document.forms["mainForm"].elements["IDSubCatalogo"].options[document.forms["mainForm"].elements["IDSubCatalogo"].selectedIndex].value;
	
	if(intIDSubCatalogo != "")
		window.location.href = "ProductsCatalogues.asp?IDSub=" + intIDSubCatalogo;
}

function fnProdotto()
{
	var intIDCategoriaProdotto	= document.forms["mainForm"].elements["IDCategoriaProdotto"].options[document.forms["mainForm"].elements["IDCategoriaProdotto"].selectedIndex].value;
	
	if(intIDCategoriaProdotto > 0)
		window.location.href = "Products.asp?IDCategoriaProdotto=" + intIDCategoriaProdotto;
}

function fnProdottoFR()
{
	var strFamille	= document.forms["mainForm"].elements["IDCategoriaProdotto"].options[document.forms["mainForm"].elements["IDCategoriaProdotto"].selectedIndex].value;
	
	if(strFamille != "")
		window.location.href = "ProductsFR.asp?Famille=" + strFamille;
}

function fnLogin()
{
	var szErr = "";

	var szUser		= document.forms["mainForm"].elements["UID"].value;
	var szPassword	= document.forms["mainForm"].elements["PWD"].value;
	
	if ( szUser.length		== 0 ) { szErr += "Provide a User ID!\n"; }
	if ( szPassword.length	== 0 ) { szErr += "Provide a Password!\n"; }

	if ( szErr.length == 0 )
	{
		var W = 325; 
		var H = 140; 
		var L = parseInt((window.screen.width - W) / 2); 
		var T = parseInt((window.screen.height - H) / 2);
		
		window.open("http://www.manuli-hydraulics.com/PopLogin.asp?UID=" + szUser + "&PWD=" + szPassword + "&LNG=EN"); 
		//window.open("PopLogin.asp?UID=" + szUser + "&PWD=" + szPassword + "&LNG=EN","","left=" + L + ",top=" + T + ",width=" + W + ",height=" + H + ",toolbar=no,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars=no"); 
	}
	else
	{
		alert(szErr);
	}
}
//-->