function __checkPSCForm() {
	var textControl = new Array(
									'user_name',
									'first_name',
									'last_name',
									'preferences',
									'your_family',
									'your_friends',
									'your_interests',
									'her_interests',
									'her_appearance',
									'her_temper_character',
									'other_wishes',
									'captcha'
							   );
	
	var selectControl = new Array(
									'country',
									'children',
									'ethnicity'
								);
	var checked 		 = true;
	var lenTextControl   = textControl.length;
	var lenSelectControl = selectControl.length;
	var i;
	var id;
	
	for ( i=0; i<lenSelectControl; i++ ) {
		id = 'id_psc_'+selectControl[i];
		if ( !__verify.prototype.isItemSelected(id) ) {
			$(id + '_error').className = 'error ' + DISPLAY;
			checked = false;
		}
		else {
			$(id + '_error').className = NOT_DISPLAY;
		}
	}

	for ( i=0; i<lenTextControl; i++ ) {
		id = 'id_psc_'+textControl[i];
		if ( __verify.prototype.isEmpty($V(id)) ) {
			$(id + '_error').className = 'error ' + DISPLAY;
			checked = false;
		}
		else {
			$(id + '_error').className = NOT_DISPLAY;
		}
	}
	__onresizeWindow();
	return checked;
}
