function open_video(service, id) {
  var html = "";

  if (service == "vimeo") html = "<iframe src=\"http://player.vimeo.com/video/" + id + "\" width=\"400\" height=\"212\" frameborder=\"0\"></iframe>";
  if (service == "youtube") html = "<object width=\"400\" height=\"212\"><param name=\"movie\" value=\"http://www.youtube.com/v/" + id + "?fs=1&amp;hl=en_US\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/" + id + "?fs=1&amp;hl=en_US\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"400\" height=\"212\"></embed></object>";

  jQuery("#videoplayer .current_video").html(html);
  return false;
}
