function SearchBox_Submit()
{
	document.getElementById('frmRicerca').action = 'prodthumb.asp?sCerca=' + document.getElementById('sCerca').value; 
	document.getElementById('frmRicerca').submit();
}

function SearchBox_KeyPress(e)
{
	var keyCode = (window.Event) ? e.which : e.keyCode;
	if( keyCode == 13 ) 
		SearchBox_Submit();
}

function FilterByMarca()
{
	var i;
	for (i=0; i<document.getElementById('sMarcaTel').options.length; i++) 
	{
		if (document.getElementById('sMarcaTel').options[i].selected) 
		{
			document.getElementById('advSearch').action = 'prodthumb.asp?sMarcaTel=' + document.getElementById('sMarcaTel').options[i].value + '&sModTel=';
			break;
		}
	}
	document.getElementById('advSearch').submit();
}

function TryToSubmit(sLang)
{
	if(document.getElementById('sModTel').options[0].selected && document.getElementById('sCateg').options[0].selected)
	{
		if(sLang == 'it')
			alert('Specificare il modello o la categoria');
		else
			alert('Please specify model or category');
	}
	else
	{
		document.getElementById('advSearch').submit();
	}
}