function validateme(howmany)
{
var totalcount=0;
for (counter=0;counter<howmany;counter=counter+1)
{
thiscount = eval("document.cart_multi.qty_" + counter + ".value")
totalcount = totalcount + parseInt(thiscount);
}
	moduluscount = totalcount % 12;
	howmanymore = 12 - moduluscount;
	if (moduluscount != 0)
	{
		alert('Please order in quantities of 12 - add another '+howmanymore+' to your order!');
		return false;
	}


	return true;
}

function validatetotal(howmany)
{
var totalcount=0;
for (counter=0;counter<howmany;counter=counter+1)
{
thiscount = eval("document.cart_multi.qty_" + counter + ".value")
totalcount = totalcount + parseInt(thiscount);
}
	moduluscount = totalcount % 12;
	howmanymore = 12 - moduluscount;
	dozencount = (totalcount - moduluscount) / 12
	document.cart_multi.Dozen.value = dozencount
	document.cart_multi.More.value = moduluscount
	document.cart_multi.Total.value = totalcount

}