// JavaScript Document
  function order(promo_code) {
/*
    alert("promo_code is " + promo_code.value)
*/
    if (promo_code.value=="vegwebber")
      return "Order-DJC002.html"
      else
	    if (promo_code.value=="Co4State")
		  return "Order-DJC003.html"
		else {
          alert("Sorry, promotional Code " + promo_code.value + " does not correspond to any of our current promotions.")
	    return "Order-DJC001.html"
	    }
  }
