<!--
function valGiftCert() {
	valid = true;
	if (document.giftCertForm.token.value == ""){
		alert ("Please supply your gift certificate code.");
		document.giftCertForm.token.focus();
		valid = false;
	} else if (document.giftCertForm.token.value != "Christmas Magic" && document.giftCertForm.token.value.length < 30){
		alert ("Your gift certificate code appears to be invalid. Please try again.");
		document.giftCertForm.token.focus();
		valid = false;
	}
	if (valid && document.giftCertForm.token.value != "Christmas Magic") {
		valid = confirm('You are about to apply this gift certificate to this order. You must COMPLETE THE ORDER by completing the checkout process even if your total is $0 in order for your order to be fulfilled. Orders with a $0 total will not prompt you for payment but make sure you make it to the Thank You page which has a link to view your receipt.');
	}
	return valid;
}
-->
