Hi, I have written a blog post about getting an iPhone app to jump into the review page from an iPhone app. http://www.memention.com/blog/2009/09/03/Open-Reviews.html It is basically done like this: Code: - (IBAction)gotoReviews: (id) sender { NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa"; str = [NSString stringWithFormat:@"%@/wa/viewContentsUserReviews?", str]; str = [NSString stringWithFormat:@"%@type=Purple+Software&id=", str]; // Here is the app id from itunesconnect -- here our Chess game str = [NSString stringWithFormat:@"%@289382458", str]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]]; } Cheers! Edward