function formKeyPress( )
{
	if ( event.keyCode == 13 )
	{
		if ( document.forms.length > 0 )
		{
			__doPostBack('linkButtonLogin', '');
		}
	}
}

