// JavaScript Document
function refr(){
	LoginForm = document.getElementById('formProdotti');
	LoginForm.submit();
}
function refr2(valore){
	LoginForm = document.getElementById('formProdotti');
	LoginForm.cmbSub.value = valore;
//	alert('LoginForm.cmbSub.value = ' + LoginForm.cmbSub.value);
	LoginForm.submit();
}
function refr3(valore){
	LoginForm = document.getElementById('formProdotti');
	LoginForm.cmbCol.value = valore;
//	alert('LoginForm.cmbSub.value = ' + LoginForm.cmbSub.value);
	LoginForm.submit();
}
function linkSKEDA(chiave)
{
	LinkSkeda = document.getElementById('linkSK');
	LinkSkeda.action = 'prodotti_scheda.asp?id=' + chiave;
	LinkSkeda.submit();
}