function aguarde(x) {
	var control = document.getElementById(x);
	//control.src = "/fgmaiss/images/aguarde.jpg";
}
function fgcss_preencheSenha(tecla) {
	document.getElementById('dataInput').value += tecla;
	return true;
}

function fgcss_clear() {
	document.getElementById('dataInput').value = "";
	return true;
}

function fgcss_releaseFocus(campo1, campo2) {
	if (campo1.value.length >= campo1.maxLength){
		campo2.focus();
	}
}

function fgcss_onlyNumericField(objEvent) {
	var iKeyCode;

	if (navigator.appName.toUpperCase().match(/MICROSOFT INTERNET EXPLORER/) != null)
		iKeyCode = objEvent.keyCode;
	else
		iKeyCode = objEvent.which;

	return (iKeyCode >= 48 && iKeyCode <= 57 || iKeyCode == 127 || iKeyCode == 8 || iKeyCode == 0)
}
