CSignupValidator.prototype = new CValidator();
CSignupValidator.prototype.constructor = CSignupValidator;

function CSignupValidator( )
{	
	this.names = new Array(	"un",
							"email",
							"passwd_confirm",
							"passwd" );
	
	this.values = new Array("userf",
							"f@f.com",
							"Password",
							"Password" );
	
	this.m_FormID = "id_signup";
	this.ClassName = "CLogin";
	
	// initialize it
	this._init( this.names, this.values );
	
	this.start = _start;

	function _start()
	{
		if( !this._validate() )
			return;
			
		var o = new CSignup();
		//alert( "CSignupValidator " + o.getResponse() );
	}
}
