/**
* File: sale_message_functions.js
* Author: Brian Schemp
* 
*
* History: 10/21/2009 Brian - Created.
*
*
*/


/**
* Display the discount exemptions window.
*
*/
function displayDiscountExceptionsPopup() {
	//display the background.
	$("#backgroundPopup").css({"opacity": "0.7"});  
	$("#backgroundPopup").fadeIn("slow");		
	
	//display the discount exceptions.
	$("#discountExceptionsMessagePopup").fadeIn("slow");			
}

/**
* Close the discount exemptions window.
*
*/
function closeDiscountExceptionsPopup() {		 
	$("#discountExceptionsMessagePopup").fadeOut("slow");
	$("#backgroundPopup").fadeOut("slow");
}

/**
* Display the free shipping exemptions window.
*
*/
function displayFreeshippingExceptionsPopup() {
	//display the background.
	$("#backgroundPopup").css({"opacity": "0.7"});  
	$("#backgroundPopup").fadeIn("slow");		
	
	//display the mopar catalog order form.
	$("#freeShippingExceptionsMessagePopup").fadeIn("slow");			
}

/**
* Close the free shipping exemptions window.
*
*/
function closeFreeshippingExceptionsPopup() {		 
	$("#freeShippingExceptionsMessagePopup").fadeOut("slow");
	$("#backgroundPopup").fadeOut("slow");
}	