// JavaScript Document

function checkIfDapplies(){
	var inputtedCode = window.document.myForm.discountcode.value;
	if(inputtedCode.toUpperCase() == 'FAM15' || inputtedCode.toUpperCase() == 'FAM15' || inputtedCode.toUpperCase() == 'MAMAS15' 
	|| inputtedCode.toUpperCase() == 'NEST15' || inputtedCode.toUpperCase() == 'CRAIG15' || inputtedCode.toUpperCase() == 'REPEAT15'																																																	  	|| inputtedCode.toUpperCase() == 'MWS15' || inputtedCode.toUpperCase() == 'CAFE15' || inputtedCode.toUpperCase() == 'VILLAGE15'
	|| inputtedCode.toUpperCase() == 'AZMOM15' || inputtedCode.toUpperCase() == 'BASE15'  || inputtedCode.toUpperCase() == 'BANNER15')
		return .15;
	else if(inputtedCode.toUpperCase() == 'FBOCT' || inputtedCode.toUpperCase() == 'SAVVY10')
		return .10;	
	else if((inputtedCode.toUpperCase() == 'PREORDER10' && vMonth <= 10) || (inputtedCode.toUpperCase() == 'PUMPKIN' && cardType == 1 && vMonth <= 9))
		return .10;	
	else if((inputtedCode.toUpperCase() == 'BABY10' && vMonth == 5) || (inputtedCode.toUpperCase() == 'BABY10' && vMonth == 6))
		return .10;		
	else if(inputtedCode.toUpperCase() == 'EARLYBIRD20')
		return .2;		
	else	
		return 0;
	
}
