function ShortKey(event)
{
	var keyCode = event.keyCode || event.which;
	//J Key for Next Left Option
	if (keyCode == 106 )
	{
		//make sure the deduction is within the options (ie not going into -1)
		if ( document.ROPAS.DropDownList_RPS.selectedIndex > 0 )
		{
		document.ROPAS.DropDownList_RPS.selectedIndex=document.ROPAS.DropDownList_RPS.selectedIndex-1;
		}
	}	
	//L Key for Next Right Option
	else if (keyCode == 108 )
	{
		document.ROPAS.DropDownList_RPS.selectedIndex=document.ROPAS.DropDownList_RPS.selectedIndex+1;
	}
	//I Key for fewer points
	else if (keyCode == 105 )
	{
		//make sure the deduction is within the options (ie not going into -1)
		if ( document.ROPAS.DropDownList_Scores.selectedIndex > 0 )
		{
		document.ROPAS.DropDownList_Scores.selectedIndex=document.ROPAS.DropDownList_Scores.selectedIndex-1;
		}		
	}
	//K Key for more points
	else if (keyCode == 107 )
	{
		document.ROPAS.DropDownList_Scores.selectedIndex=document.ROPAS.DropDownList_Scores.selectedIndex+1;
	}
	//this just auto focus on the button, so that hitting the enter key will submit the page
	document.ROPAS.Button_Play.focus();	
}