function isEnterkeyPressed()
{
	var tmp = ((window.event && window.event.keyCode == 13) || (event && event.which == 13));
	return tmp;
}