   function VideoPlayer() {

    // establish options
    var options = {
    largeResultSet : false,
    string_allDone : "Thanks for watching ..."
    };

    // establish default tags
    var defaultTags = [
      { query : "London Sights - bbnl", label : "London Sights" },
      { query : "London Buckingham Palace - bbnl", label : "London Buckingham Palace" },
      { query : "London Sightseeing at Night - bbnl", label : "London Sightseeing at Night" }
    ];

    // create a new GSvideoSearchControl
    new GSvideoSearchControl(
      document.getElementById("videosc"),   // container
      defaultTags,                          // default tag array
      null,                                 // optional load function
      null,                                 // optional save function
      options                             // options
      );

  }
