// ATTENZIONE !!!
// dipende dal file prototype.String.trim.js
String.prototype.isValidPassword = function()
{
	if ( (this.trim()).length >= 5)
		return true;
	else
		return false;
}
