<!--
function ShopPromo_Validator(theForm)
{

  //PROMO VALIDATE:
    if (theForm.promoCode.value != "LDC205")
    //TEST FOR ENTRY
    {
      alert("Invalid Promotional Code.");
      theForm.promoCode.focus();
      return (false);
    }

  return (true);
}
//-->
