function embed_youtube(pid, v)
{
  var params = { allowScriptAccess: "always", allowfullscreen: true, wmode: "opaque" };
  var atts = { id : "player" + pid };
  
  swfobject.embedSWF("http://www.youtube.com/v/" + v + "?enablejsapi=1&playerapiid=ytplayer&version=3",
                       "youtube" + pid , "440", "330", "8", null, null, params, atts);
}



function embed_banner(pid, v, w, h)
{
  var params = { allowScriptAccess: "always", allowfullscreen: true, wmode: "opaque" };
  var atts = { id : "banner" + pid };
  
  swfobject.embedSWF(v, "banner" + pid , w, h, "8", null, null, params, atts);
}
