if(!ajas)var ajas={};
if(!ajas.ui)ajas.ui={};

// use this function for form feedback
ajas.ui.magicCaps=function(event) {
	event=event||window.event;
	var oInput=event.target||event.srcElement;
	var sLabel = oInput.id + 'Msg';
	oInput.className = oInput.className.replace(/ajas_caps_error/g, '');
	if (ajas.event.testCapsLock(event)) {
		document.getElementById(sLabel).innerHTML='Is Caps Lock on?';
		oInput.className += ' ajas_caps_error';
	} else {
		document.getElementById(sLabel).innerHTML='&nbsp;';
	}
}