function resize_shadow() {
	document.getElementById("main_shad").style.height = document.getElementById("container").offsetHeight + "px";
}

function is_priv_checked()
{
	document.priv = true;
	if(!document.checkout.priv.checked)
	{
		alert('Please agree to our Privacy Policy before continuing.');
		document.priv = false;
	}
}

function is_contpriv_checked()
{
	document.contpriv = true;
	if(!document.contact_form.contpriv.checked)
	{
		alert('Please agree to our Privacy Policy before continuing.');
		document.contpriv = false;
	}
}

function is_terms_checked()
{
	document.terms = true;
	if(!document.checkout.terms.checked)
	{
		alert('Please agree to our Terms and Conditions before continuing.');
		document.terms = false;
	}
}