/*
 * Payment
 * By James E. Hartley (http://www.purplecrayons.com/)
 * Copyright (c) 2010 Purple Crayons Interactive
*/
		  
/*!!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/

function pci_payment( theform ){

    var fail = false;
	
	var q1 = parseInt(theform.FFE_Q_18.options[theform.FFE_Q_18.selectedIndex].value);
	if( q1 > 7 ) fail = true;

	var q2 = parseInt(theform.FFE_Q_24.options[theform.FFE_Q_24.selectedIndex].value);
	if( q2 > 7 ) fail = true;

	var q3 = parseInt(theform.FFE_Q_LP.options[theform.FFE_Q_LP.selectedIndex].value);
	if( q3 > 7 ) fail = true;
	
	var q4 = parseInt(theform.FFE_Q_BR.options[theform.FFE_Q_BR.selectedIndex].value);
	if( q4 > 7 ) fail = true;
	
	var q = 0 + q1 + q2 + q3 + q4;
	if( q <= 0 ) fail = true;

	if( fail ) return false;

	return true;
}

