function PreventEnter()
{
  if (event.keyCode == 13) 
	{        
		event.cancelBubble = true;
		event.returnValue = false;
  }
}
