function checkform()
{
	if((document.paypalharvey.agree.checked == false) && (document.paypallilacs.agree.checked == false))
	{
		alert('Please mark the checkbox to agree to terms and conditions before you can add to cart.')
		return false;
	}
	else((document.paypalharvey.agree.checked == true) || (document.paypallilacs.agree.checked == true))
	{
		return true;
	}
}

function checkformharvey()
{
	if(document.paypalharvey.agree.checked == false)
	{
		alert('Please mark the checkbox to agree to terms and conditions before you can add to cart.')
		return false;
	}
	else(document.paypalharvey.agree.checked == true)
	{
		return true;
	}
}

function checkformlilacs()
{
	if(document.paypallilacs.agree.checked == false)
	{
		alert('Please mark the checkbox to agree to terms and conditions before you can add to cart.')
		return false;
	}
	else(document.paypalharvey.agree.checked == true)
	{
		return true;
	}
}

