
var com_header  = '<div id="demon_title">Discount Code Entry</div>'; // The header on alert
var com_headx   = '<div id="demon_close" onclick="demon_hide()"></div>';// the X on the header
var com_info    = "url('functions/images/info.jpg')"; // The blue i image seen in the message
var com_error   = "url('functions/images/error.jpg')"; // the red x image seen in the message
var com_buttons = '<input type="button" value="OK" style="width:100px" onclick="demon_hide()">'; // ok button shown under message
var d_com       = new Array();

//Displayed when a someone enters a bad code
d_com[0] = '"Error:<br> The code you entered " + document.getElementById(\'discount\').value + " is not valid.<br><br> Possible Reasons:<br><br>Codes are case sensitive<br>You have used the code.<br>The code has expired."';
//Displayed when the code applies to all items being added to cart and discount is a $ amount
d_com[1] = '"You have entered " + com_code + ".<br><br>Code Value:<br> All items added to cart after this code entry will receive a " + "$" + com_dis_amt + " discount."';
//Displayed when the code applies to all items being added to cart and discount is a % off
d_com[2] = '"You have entered " + com_code + ".<br><br>Code Value:<br> All items added to cart after this code entry will receive a " + com_dis_amt + "%" + " discount."';
//Displayed when the code entered is restricted to one use per customer and has been entered a second time
d_com[3] = '"You have entered " + com_code + ".<br><br>Error:<br> You have already used this code."';
//Displayed when the code box is left empty
d_com[4] = '"Please enter a code before submitting form."';
//Displayed when the code entered is already in use.
d_com[5] = '"The code you entered is already active."';
//Displayed when someone uses the buy 1 get 1 Free code
d_com[6] = '"You have entered " + com_code + ".<br><br>Code Value:<br>Buy 1 get 1 free.<br>You will receive a free item with your purchase."';
//Displayed when someone uses a buy__ get_ free code greater than b1g1f
d_com[7] = '"You have entered " + com_code + ".<br><br>Code Value:<br>Buy "+com_buy+" get "+ com_get +" free.<br>You must purchase "+com_buy+" of the same item in order to get your free item."';
//Displayed when someone enters a code with multiple items on the same page and it is a $ amount off
d_com[8] = '"You have entered " + com_code + ".<br><br>Code Value:<br>" + "$" + com_dis_amt + " discount is now in effect."';
//Displayed when someone enters a code with multiple items on the same page and it is a % amount off
d_com[9] = '"You have entered " + com_code + ".<br><br>Code Value:<br>" + com_dis_amt + "%" + " discount is now in effect."';
