// JScript source code

function KeyListen()
{
	var Key = window.event.keyCode;
	var ctrlKey=window.event.ctrlKey;
	//'M' key and Ctrl Key
	if(ctrlKey)
	{
		//window.status=Key;
		switch(Key)
		{
			case 49:
			{
				window.location='textOnly.asp';
				break;
			}
			case 51:
			{
				window.location='textOnly.asp';
				break;	
			}
			case 52:
			{
				document.frmSearch.submit();
				break;
			}
			case 77:
			{
				
				window.location='../Home.aspx';
				
			}
		}		
	}				
}
