function __matchVP( source, args ) 
{
	var fret=true;
	
	fret=matchNumber( 'vp' );
	
	args.IsValid=fret;
	
	return true;
}

function __matchPMTP( source, args ) 
{
	var fret=true;
	
	fret=matchNumber( 'pmtp' );
	
	args.IsValid=fret;
	
	return true;
}

function __matchI( source, args ) 
{
	var fret=true;
	
	fret=matchNumber( 'i' );
	
	args.IsValid=fret;
	
	return true;
}

function __matchT( source, args ) 
{
	var fret=true;
	
	fret=matchNumber( 't' );
	
	args.IsValid=fret;
	
	return true;
}
