function generate_fields ( inform ) {  var thismodel = inform.modelpick.options[inform.modelpick.selectedIndex].value;  var sku       = '';  // a conditional H*A*C*K - array not worth the effort	if (thismodel == '1') { sku = '13381:1,'; }	if (thismodel == '2') { sku = '13382:1,'; }	if (thismodel == '3') { sku = '13383:1,'; }	if (thismodel == '4') { sku = '13384:1,'; }		if (inform.add_portectorz.checked == true) {		sku += '13616:1,';	}	if (inform.add_armband.checked == true) {		sku += '13141:1,';	}  inform.ProdList.value = sku;}function handleform ( inform ) { var errmsg = '';// NB: secondary conditional statements below are due to NN 4.x hack if ( inform.modelpick.options[inform.modelpick.selectedIndex].value == '') { errmsg += 'Please Select a Model before trying to purchase.'; } if ( errmsg ) { alert (errmsg); return false; } else { generate_fields( inform ); return true; }}
