var WPRevver =
{
  showFlashPlayer: function(id, affiliateId, skin)
  {
	  var html;
	  if(skin == '1.0')
			html='<embed type="application\/x-shockwave-flash" src="http:\/\/flash.revver.com\/player\/1.0\/player.swf" pluginspage="http:\/\/www.macromedia.com\/go\/getflashplayer" scale="noScale" salign="TL" bgcolor="#ffffff" flashvars="width=480&height=392&mediaId='+id+'&affiliateId='+affiliateId+'&javascriptContext=true&skinURL=http:\/\/flash.revver.com\/player\/1.0\/skins\/Default_Raster.swf&skinImgURL=http:\/\/flash.revver.com\/player\/1.0\/skins\/night_skin.png&actionBarSkinURL=http:\/\/flash.revver.com\/player\/1.0\/skins\/DefaultNavBarSkin.swf&resizeVideo=True" wmode="transparent" height="392" width="480"><\/embed>'
	  else  // 1.1
			html='<object data="http:\/\/flash.revver.com\/player\/1.0\/player.swf" type="application\/x-shockwave-flash" height="392" width="480"><param value="noScale" name="scale"><param value="TL" name="salign"><param value="#ffffff" name="bgcolor"><param value="width=480&amp;height=392&amp;mediaId='+id+'&amp;affiliateId='+affiliateId+'&amp;javascriptContext=true&amp;skinURL=http:\/\/flash.revver.com\/player\/1.0\/skins\/RevverSkin_1-1.swf&amp;skinImgURL=http:\/\/flash.revver.com\/player\/1.0\/skins\/night_skin.png&amp;actionBarSkinURL=http:\/\/flash.revver.com\/player\/1.0\/skins\/RevverActionBarSkin.swf&amp;resizeVideo=true" name="flashvars"><\/object>';
    document.write(html);
  },

  showQuicktimePlayer: function(id, affiliateId)
  {
    var html = '<object codebase="http:\/\/www.apple.com\/qtactivex\/qtplugin.cab" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" height="376" width="480"><param name="src" value="http:\/\/media.revver.com\/broadcast\/'+id+'\/video.mov\/'+affiliateId+'"><param name="controller" value="True"><param name="cache" value="False"><param name="autoplay" value="False"><param name="kioskmode" value="False"><param name="scale" value="1"><embed src="http:\/\/media.revver.com\/broadcast\/'+id+'\/video.mov\/'+affiliateId+'" pluginspage="http:\/\/www.apple.com\/quicktime\/download\/" scale="1" kioskmode="False" qtsrc="http:\/\/media.revver.com\/broadcast\/'+id+'\/video.mov\/'+affiliateId+'" cache="False" controller="True" type="video\/quicktime" autoplay="False" height="376" width="480"><\/object>';
    document.write(html);
  },

  showVideo: function(id, affiliateId)
  {
    var element = $('revver'+id);
    var html = '<object codebase="http:\/\/www.apple.com\/qtactivex\/qtplugin.cab" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" height="376" width="480"><param name="src" value="http:\/\/media.revver.com\/broadcast\/'+id+'\/video.mov\/'+affiliateId+'"><param name="controller" value="True"><param name="cache" value="False"><param name="autoplay" value="False"><param name="kioskmode" value="False"><param name="scale" value="1"><embed src="http:\/\/media.revver.com\/broadcast\/'+id+'\/video.mov\/'+affiliateId+'" pluginspage="http:\/\/www.apple.com\/quicktime\/download\/" scale="1" kioskmode="False" qtsrc="http:\/\/media.revver.com\/broadcast\/'+id+'\/video.mov\/'+affiliateId+'" cache="False" controller="True" type="video\/quicktime" autoplay="False" height="376" width="480"><\/object>';
    new Insertion.After(element, html);
    Element.remove(element);
  }
}