/****************************************************
*	Constants. Do not edit
****************************************************/

//	Global used for flagging the validateBlank() function within most other validation functions
var blankOK = false;

//	Global used for class switching.
var revertClass = 'form';

//	Array for error totalling while in group error mode
var errorData = new Array();
	
/****************************************************
*	Globals.  Modify these to suit your setup
****************************************************/

//	Change this to the classname you want for the error highlighting
var errorClass = 'error';

//	If the bConfirm flag is set to true, the users will be prompted with CONFIRM box with this message
var confirmMsg = 'Your Data is about to be sent.\nPlease click \'Ok\' to proceed or \'Cancel\' to abort.';

//	If user cancels CONFIRM, then this message will be alerted.  If you don't want this alert to show, then
//	empty the variable (  var confirmAbortMsg = '';  )
var confirmAbortMsg = 'Submission cancelled.  Data has not been sent.';

//	Enter the name/id of your form's submit button here (works with type=image too)
var submitButton = 'Submit';

//	Enter the name/id of your form's reset button here (works with type=image too)
var resetButton = 'Reset';

//	Enter the DOM name of the SELECT object here. Make sure you pay attention to the values (CC Types)
//	used in the case statement for the function validateCC()
var ccTypeObj = 'form1.Credit_Card_Type';

//	EOF