function passwordvalidation( obj, passwordObj, entered )
{
	with( passwordObj )
	{
	
		if( value.length == 0 )
		{
			return true;
		}
			
		if( value.length < 6 )
		{
			return false;
		}
		return true;
	}
}
