// JavaScript Document
function checkform()
{
   if (!document.finished_bag.terms.checked) 
   {
	// no radio button is selected
	alert('You must agree to the terms & conditions.');
	return false;
   }

}