function showProductcheckIt(opt1Label, opt2Label, opt3Label, opt4Label, opt5Label, opt6Label) {
	var formName	= document.forms[0].name;

	var	prod		= eval('document.' + formName + '.PROD000');
	var	price		= eval('document.' + formName + '.PRICE000');

	var	opt1		= eval('document.' + formName + '.OPT1000');
	var	opt2		= eval('document.' + formName + '.OPT2000');
	var	opt3		= eval('document.' + formName + '.OPT3000');
	var	opt4		= eval('document.' + formName + '.OPT4000');
	var	opt5		= eval('document.' + formName + '.OPT5000');
	var	opt6		= eval('document.' + formName + '.OPT6000');

	var	qty			= eval('document.' + formName + '.QTY000');


	if (prod) {
		if (prod.value == '') {
			alert('Need to set product id in form');
			return false;
		}
	}
	if (price) {
		if (price.value == '') {
			alert('Need to set price in form');
			return false;
		}
	}
	if (opt1) {
		if (opt1.selectedIndex == 0) {
			alert('Please choose a '+opt1Label);
			return false;
		}
	}
	if (opt2) {
		if (opt2.selectedIndex == 0) {
			alert('Please choose a '+opt2Label);
			return false;
		}
	}
	if (opt3) {
		if (opt3.selectedIndex == 0) {
			alert('Please choose a '+opt3Label);
			return false;
		}
	}
	if (opt4) {
		if (opt4.selectedIndex == 0) {
			alert('Please choose a '+opt4Label);
			return false;
		}
	}
	if (opt5) {
		if (opt5.selectedIndex == 0) {
			alert('Please choose a '+opt5Label);
			return false;
		}
	}
	if (opt6) {
		if (opt6.selectedIndex == 0) {
			alert('Please choose a '+opt6Label);
			return false;
		}
	}

	if (qty) {
		if (qty.value == '' || qty.value == '0') {
			alert('Please indicate how many items you wish to purchase');
			return false;
		}
	}

	document.forms[0].submit();

}

function showProductCheckIt(formName, opt1Label, opt2Label, opt3Label, opt4Label, opt5Label, opt6Label) {

	var	prod		= eval('document.' + formName + '.PROD000');
	var	price		= eval('document.' + formName + '.PRICE000');

	var	opt1		= eval('document.' + formName + '.OPT1000');
	var	opt2		= eval('document.' + formName + '.OPT2000');
	var	opt3		= eval('document.' + formName + '.OPT3000');
	var	opt4		= eval('document.' + formName + '.OPT4000');
	var	opt5		= eval('document.' + formName + '.OPT5000');
	var	opt6		= eval('document.' + formName + '.OPT6000');

	var	qty			= eval('document.' + formName + '.QTY000');


	if (prod) {
		if (prod.value == '') {
			alert('Need to set product id in form');
			return false;
		}
	}
	if (price) {
		if (price.value == '') {
			alert('Need to set price in form');
			return false;
		}
	}
	if (opt1) {
		if (opt1.selectedIndex == 0) {
			alert('Please choose a '+opt1Label);
			return false;
		}
	}
	if (opt2) {
		if (opt2.selectedIndex == 0) {
			alert('Please choose a '+opt2Label);
			return false;
		}
	}
	if (opt3) {
		if (opt3.selectedIndex == 0) {
			alert('Please choose a '+opt3Label);
			return false;
		}
	}
	if (opt4) {
		if (opt4.selectedIndex == 0) {
			alert('Please choose a '+opt4Label);
			return false;
		}
	}
	if (opt5) {
		if (opt5.selectedIndex == 0) {
			alert('Please choose a '+opt5Label);
			return false;
		}
	}
	if (opt6) {
		if (opt6.selectedIndex == 0) {
			alert('Please choose a '+opt6Label);
			return false;
		}
	}

	if (qty) {
		if (qty.value == '' || qty.value == '0') {
			alert('Please indicate how many items you wish to purchase');
			return false;
		}
	}

	document.forms[0].submit();

}
