
function onsubmit_cart_ASIT(input_1,input_2)
{
  var error_1='Error: This field is required!';
if (!isSelectChecked(input_1))
{
	alert(error_1);
	mysetfocus(input_1); 
	return false;
}
  var error_2='Error: This field is required!';
if (!isSelectChecked(input_2))
{
	alert(error_2);
	mysetfocus(input_2); 
	return false;
}

	return true;
}

function onsubmit_cart_CelebDrawings(input_3)
{
  var error_3='Error: This field is required!';
if (!isSelectChecked(input_3))
{
	alert(error_3);
	mysetfocus(input_3); 
	return false;
}

	return true;
}

