function testIt()
{
alert('That\'s fine!');
}


function checkCapsLock( e ) {
	var myKeyCode=0;
	var myShiftKey=false;
	var myMsg='Your Caps Lock is pressed On.\n\nPlease press Caps Lock to turn it Off.\n\nYou may be trying to type in all capital letters.\nWe request that you do not do so but only use capital letters as they are needed for grammar purposes.';

	// Works for Internet Explorer 4+ but has no effect in Netscape
	if ( document.all ) {
		myKeyCode=e.keyCode;
		myShiftKey=e.shiftKey;
	} 

	// Upper case letters are seen without depressing the Shift key, therefore Caps Lock is on
	if ( ( myKeyCode >= 65 && myKeyCode <= 90 ) && !myShiftKey ) {
		alert( myMsg );
            e.returnValue = false;
	// Lower case letters are seen while depressing the Shift key, therefore Caps Lock is on
	} else if ( ( myKeyCode >= 97 && myKeyCode <= 122 ) && myShiftKey ) {
		alert( myMsg );
            e.returnValue = false;
	}
}

