
function loadVideo(vtitle, video)
{
  document.getElementById("vtitle").innerHTML = vtitle;
  //document.getElementById("container").innerHTML = '<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.';
  document.getElementById("container").innerHTML = '<a href="http://www.macromedia.com/go/getflashplayer"><img src="/images/sx/youneedflash480.jpg" width="480" height="396" border="0"></a>';

  var s1 = new SWFObject("http://www.3dbuzz.com/vbforum/mediaplayer5.swf","mediaplayer","480","396","9.0.124.0");
  s1.addParam("allowfullscreen","true");
  s1.addVariable("width","480");
  s1.addVariable("height","396");
  s1.addVariable("streamer","rtmpe://s3otuljvizf25t.cloudfront.net/cfx/st");
  s1.addVariable("file","videos/" + video + ".mp4");
  s1.addVariable("autostart","true");
  s1.addVariable('backcolor','0x383D43');
  s1.addVariable('frontcolor','0xEEEEEE');
  s1.addVariable('lightcolor','0xFFA518');
  s1.write("container");

  //alert(arr[4]);

  //resetWaiting();
  //document.getElementById("spinloader").src="spacer.gif";
}

function loadVideoEx(vtitle, video, width, height, autostart)
{
  document.getElementById("vtitle").innerHTML = vtitle;
  //document.getElementById("container").innerHTML = '<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.';
  document.getElementById("container").innerHTML = '<a href="http://www.macromedia.com/go/getflashplayer"><img src="/images/sx/youneedflash.jpg" width="'+width+'" height="'+height+'" border="0"></a>';

  var s1 = new SWFObject("http://www.3dbuzz.com/vbforum/mediaplayer5.swf","mediaplayer",width,height,"9.0.124.0");
  s1.addParam("allowfullscreen","true");
  s1.addVariable("width",width);
  s1.addVariable("height",height);
  s1.addVariable("streamer","rtmpe://s3otuljvizf25t.cloudfront.net/cfx/st");
  s1.addVariable("file","videos/" + video + ".mp4");
  s1.addVariable("autostart",autostart);
  s1.addVariable('backcolor','0x383D43');
  s1.addVariable('frontcolor','0xEEEEEE');
  s1.addVariable('lightcolor','0xFFA518');
  s1.write("container");

  //alert(arr[4]);

  //resetWaiting();
  //document.getElementById("spinloader").src="spacer.gif";
}

