function setfocus() { 
	document.frmLoginCliente.username_cliente.focus();
}

function fSubmit(id_prodotto) {
	if(fCheckObbligatori()) {
		if(id_prodotto!="") {
			document.getElementById("elPreload").style.visibility =  "visible";
		}
		document.frmLoginCliente.submit();
	}
}

function fCheckObbligatori(){
	var blnReturn	= true;
	var oUsername	= document.getElementById("username_cliente");
	var oPassword	= document.getElementById("password_cliente");

	if( oUsername != null && oUsername.value == ""){ 
		blnReturn	= false;
		var strMessage 	= "Inserisci la Username.\r\n";
		alert(strMessage);
		oUsername.focus();
		
	} else if( oPassword != null && oPassword.value == ""){ 
		blnReturn	= false;
		var strMessage 	= "Inserisci la Password.\r\n";
		alert(strMessage);
		oPassword.focus();
		
	}
	
	return blnReturn;
}