più semplice

codice:
function ValidaImporto(valore)
{
	if (!valore.match(/^\d{1,6}(\.\d{1,2})?$/)
		return false;
	else
		return true;
}
Ciauz