NSString *videoId = ???? ( kommer fra GDataEntryBase *entry = [[feed entries] objectAtIndex:indexPath.row]; i tidliger viewController, men kan ikke helt finde videoId :-( )
NSString *youTubeVideoHTML = [[NSString alloc] initWithFormat:@"<html><head><body style=\"margin:0\"><embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" width=\"%0.0f\" height=\"%0.0f\"></embed></body></html>",
videoId,
thumbnailView.frame.size.width,
thumbnailView.frame.size.width];
// Load the html into the webview
[thumbnailView loadHTMLString:youTubeVideoHTML baseURL:nil];