How to Navigate to a Page in Windows Phone 7

It’s really simple to Navigate to another page in Windows Phone 7, but it took me a few to figure it out.
Where Page1.xaml is in the root of the app:

NavigationService.Navigate(new Uri("/Page1.xaml", UriKind.Relative));

Jon