<!--
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Description: This javaScript is to check for spaces.
// Programmer: hat
// Function(s): chkBSpace(curForm);	//pass one variable
// Tested on: IE6.0
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var debug = false;
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Call this function to check for spaces
// Ex:	chkBSpace(document.formName);
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
		function chkBSpace(objField){
			window.onerror = getChkBSpaceEH;
			var txtSpace = " ";
			if(objField.value == "" || objField.value.indexOf(txtSpace) == 0) return false;
			return true;
		}
		function getChkBSpaceEH() {
if (debug) alert("Error: chkBSpace Javascript");
			return true;
		}
//-->