function NewCapsDetect(e){
			
			var dvCapsDisplay = document.getElementById('dvCapsDisplay');
			NS4 = (document.layers) ? true : false;
			if(!e) 
				e = window.event; 

			var theKey = e.which ? e.which : ( e.keyCode ? e.keyCode : ( e.charCode ? e.charCode : 0 ) );
			var theShift = e.shiftKey || ( e.modifiers && ( e.modifiers & 4 ) ); //bitWise AND
			if((theKey > 64 && theKey < 91 && !theShift ) || ( theKey > 96 && theKey < 123 && theShift )) {
				document.getElementById('dvCapsDisplay').style.display = '';
				window.setTimeout('hideNotice()','4500');
			}
			else
				document.getElementById('dvCapsDisplay').style.display = 'none';
		} //End of capsDetect

		function hideNotice() {
			document.getElementById('dvCapsDisplay').style.display = 'none';
		}	


	function checkSize(){
		var dvCapsDisplay = document.getElementById('dvCapsDisplay');
		var width = screen.width
		var height = screen.height
		if (width== 1152 && height == 864) // 1152 * 864
			{
			dvCapsDisplay.style.left= "505px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1024 && height == 768)
			{
			dvCapsDisplay.style.left= "440px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 800 && height == 600)
			{
			dvCapsDisplay.style.left= "325px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1280 && height == 600)
			{
			dvCapsDisplay.style.left= "565px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1280 && height == 720)
			{
			dvCapsDisplay.style.left= "560px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1280 && height == 768)
			{
			dvCapsDisplay.style.left= "568px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1280 && height == 960)
			{
			dvCapsDisplay.style.left= "568px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1280 && height == 1024)
			{
			dvCapsDisplay.style.left= "568px"
			dvCapsDisplay.style.top= "285px"
			}
		else if (width== 1680 && height == 1050)
			{
			dvCapsDisplay.style.left= "755px"
			dvCapsDisplay.style.top= "285px"
			}
	}