<!--      script start

function setValue(formObj) {

	var custChoice1 = document.form1.custom6.options[document.form1.custom6.selectedIndex].value 
	var custChoice2 = document.form1.custom8.options[document.form1.custom8.selectedIndex].value 

	var shValue = 0;

	if (custChoice1 == "CD-EPSG (Survival Guide)") { shValue += 3; }
	if (custChoice1 == "CD7-10") { shValue += 3; }
	if (custChoice1 == "CD11-14") { shValue += 3; }
	if (custChoice1 == "CD-Silveira (Dictatorship Series)") { shValue += 3; }
	if (custChoice1 == "CD-JES (John Silveira)") { shValue += 3; }
	if (custChoice1 == "CD-Ayoob (Massad Ayoob)") { shValue += 3; }
	if (custChoice1 == "CD-Clay (Jackie Clay)") { shValue += 3; }
	if (custChoice1 == "CD-Duffy (Dave Duffy)") { shValue += 3; }
	if (custChoice1 == "CD-Blunt (Richard Blunt)") { shValue += 3; }
	if (custChoice1 == "CD-AE (Energy)") { shValue += 3; }
	if (custChoice1 == "SRG01-Chickens") { shValue += 4; }
	if (custChoice1 == "SRG03-Dairy Goats") { shValue += 4; }
	if (custChoice1 == "SRG04-Recession-proof your pantry"){ shValue += 7; }
	if (custChoice1 == "SRG02-Starting Over") { shValue += 10; }
	if (custChoice1 == "SRG05-Making a Living") { shValue += 11; }
	if (custChoice1 == "JES01-The Coming American Dictatorship: Parts I - XI"){ shValue += 12; }
	if (custChoice1 == "SS49-EPSG (Survival Guide)") {  shValue += 13; }
	if (custChoice1 == "DD1-Can America Be Saved From Stupid People") { shValue += 14; }
	if (custChoice1 == "CR57-Backwoods Home Cooking") { shValue += 20; }
	if (custChoice1 == "AN10-Tenth Year") { shValue += 21; }
	if (custChoice1 == "AN11-Eleventh Year") { shValue += 21; }
	if (custChoice1 == "AN12-Twelfth Year") { shValue += 21; }
	if (custChoice1 == "AN13-Thirteenth Year") { shValue += 21; }
	if (custChoice1 == "AN14-Fourteenth Year") { shValue += 21; }
	if (custChoice1 == "AN3-Third Year") { shValue += 22; }
	if (custChoice1 == "AN7-Seventh Year") { shValue += 22; }
	if (custChoice1 == "AN8-Eighth Year") { shValue += 22; }
	if (custChoice1 == "AN9-Ninth Year") { shValue += 22; }
	if (custChoice1 == "AN4-Fourth Year") { shValue += 23; }
	if (custChoice1 == "AN15-Fifteenth Year") { shValue += 24; }
	if (custChoice1 == "AN16-Sixteenth Year") { shValue += 24; }
	if (custChoice1 == "AN5-Fifth Year") { shValue += 26; }
	if (custChoice1 == "AN6-Sixth Year") { shValue += 26; }
	if (custChoice1 == "AN2-First Two Years") { shValue += 28; }

	if (custChoice2 == "CD-EPSG (Survival Guide)") { shValue += 3; }
	if (custChoice2 == "CD7-10") { shValue += 3; }
	if (custChoice2 == "CD11-14") { shValue += 3; }
	if (custChoice2 == "CD-Silveira (Dictatorship Series)") { shValue += 3; }
	if (custChoice2 == "CD-JES (John Silveira)") { shValue += 3; }
	if (custChoice2 == "CD-Ayoob (Massad Ayoob)") { shValue += 3; }
	if (custChoice2 == "CD-Clay (Jackie Clay)") { shValue += 3; }
	if (custChoice2 == "CD-Duffy (Dave Duffy)") { shValue += 3; }
	if (custChoice2 == "CD-Blunt (Richard Blunt)") { shValue += 3; }
	if (custChoice2 == "CD-AE (Energy)") { shValue += 3; }
	if (custChoice2 == "SRG01-Chickens") { shValue += 4; }
	if (custChoice2 == "SRG03-Dairy Goats") { shValue += 4; }
	if (custChoice2 == "SRG04-Recession-proof your pantry"){ shValue += 7; }
	if (custChoice2 == "SRG02-Starting Over") { shValue += 10; }
	if (custChoice2 == "SRG05-Making a Living") { shValue += 11; }
	if (custChoice2 == "JES01-The Coming American Dictatorship: Parts I - XI") { shValue += 12; }
	if (custChoice2 == "SS49-EPSG (Survival Guide)") { shValue += 13; }
	if (custChoice2 == "DD1-Can America Be Saved From Stupid People") { shValue += 14; }
	if (custChoice2 == "CR57-Backwoods Home Cooking") { shValue += 20; }
	if (custChoice2 == "AN10-Tenth Year") { shValue += 21; }
	if (custChoice2 == "AN11-Eleventh Year") { shValue += 21; }
	if (custChoice2 == "AN12-Twelfth Year") { shValue += 21; }
	if (custChoice2 == "AN13-Thirteenth Year") { shValue += 21; }
	if (custChoice2 == "AN14-Fourteenth Year") { shValue += 21; }
	if (custChoice2 == "AN3-Third Year") { shValue += 22; }
	if (custChoice2 == "AN7-Seventh Year") { shValue += 22; }
	if (custChoice2 == "AN8-Eighth Year") { shValue += 22; }
	if (custChoice2 == "AN9-Ninth Year") { shValue += 22; }
	if (custChoice2 == "AN4-Fourth Year") { shValue += 23; }
	if (custChoice1 == "AN15-Fifteenth Year") { shValue += 24; }
	if (custChoice1 == "AN16-Sixteenth Year") { shValue += 24; }
	if (custChoice2 == "AN5-Fifth Year") { shValue += 26; }
	if (custChoice2 == "AN6-Sixth Year") { shValue += 26; }
	if (custChoice2 == "AN2-First Two Years") { shValue += 28; }
	
	formObj.sh.value = shValue;
	
}


// script end -->
