﻿// JavaScript Document
// Set Option for the Discount Offer (fiveOff, tenOff, freeShip)
var discountOffer="fiveOff";

// start off the script by printing the beginning of the <div>
document.write('<div id="mm-offer-');

// if discountOffer=fiveOff, print this
if (discountOffer=="fiveOff"){
document.write('fiveOff">Take $5 off your order of $75 or more. Use coupon code <strong>FCPMAR1</strong>. Expires February 28th.');
}
// if discountOffer=tenOff, print this
else if (discountOffer=="tenOff"){
document.write('tenOff">$10.00 off when you spend $75.00 or more. Use coupon code <strong>ATONALNICKEL</strong>. Expires 11/11/08.');
}
// if discountOffer=freeShip, print this
else if (discountOffer=="freeShip"){
document.write('freeShip">FREE shipping on orders of $50.00 or more. Use coupon code <strong>CPAFFSHP50CB</strong>. Expires 12/31/08.');
}

// finish off the script by printing the ending </div>
document.write('</div><!-- mm-offer -->');