function promocode_Validator(theForm)
{

  if (theForm.promotioncode.value == "")
  {
    alert("Please enter a Promo Code.");
    theForm.promotioncode.focus();
    return (false);
  }

  return (true);
}

