 //Disable Button Submit
	    function disableTheControl(control) {
	        DisableControl_SetTimeout(control.id, 100);
	    }
	    function DisableControl_SetTimeout(controlId, interval) {
	        setTimeout("DisableControl('" + controlId + "')", interval);
	    }
	    function DisableControl(controlId) {
	        if (navigator.appName == 'Microsoft Internet Explorer') {
	            //base.CausesValidation = false;
	            //Page_ValidationActive=false;
	            if (typeof (Page_ClientValidate) == 'function') {
	                if (Page_ClientValidate() == false) { return false; }
	                //document.getElementById(controlId).DisableServerSideValidation();
	            }
	            //toggleInputElementsDisabledStatus(controlId);
	            document.getElementById(controlId).disabled = true;
	            /*	}else{
	            document.getElementById(controlId).onfocus = function preventFocus(e) { this.blur(); };
	            document.getElementById(controlId).style.backgroundColor = '#CCCCCC';
	            */
	            document.getElementById(controlId).value = 'Please wait...';
	            var theElementStyle = document.getElementById('divProgress');
	            theElementStyle.style.display = "block";
	        }
	    }