<!--//

	// create the validator
	var v = new Validator();

	// validate the contact form
	function validateForm() {
		v.clearAll();
		v.validate('login_username', new Array({type:'required', title:'Email', text:'Please enter your login name (email)'}, {type:'email', text: 'Your email address is in an invalid format'}));
		v.validate('secretkey', new Array({type:'required', title:'Password', text:'Please enter your password'}));

		// if have any messages
		if(!v.hasMsgs('ERROR')) {
			return true;	
		}

		// 
		return false;
	}
//-->
