function TestCC(){
	// This function will test to see if customer has selected the Full CC history and one of
	// the subset packages.  If yes, alert user to their potential redundent purchase.
	if(document.frmOrder.Product_XLS1.checked & document.frmOrder.Product_XLS2.checked)
		alert("You have select to purchase both the Full data set and the three Main data series.  This would be a redudent purchase since the three Main series are included in the Full data set.  Please unselect one of your choices.");
		
	if(document.frmOrder.Product_XLS1.checked & document.frmOrder.Product_XLS3.checked)
		alert("You have select to purchase both the Full data set and the Regional data series.  This would be a redudent purchase since the Regional is included in the Full data set.  Please unselect one of your choices.");
}