/**
 * Deman WICMS Copyright (c) 2008 Deman
 * 
 * The author freely grants the right under specific terms to use, copy or modify
 * the Software for any non-commercial purpose. Any use or distribution of this
 * Software to obtain profit or for commercial ends being subject to obtaining the
 * prior express authorization of the author.
 * 
 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE
 * AUTHOR BE LIABLE TO ANY PARTY FOR ANY DAMAGE ARISING OUT OF THE USE OF THIS
 * SOFTWARE.
 * 
 * For more details please read the full LICENSE!
 * 
 * Video plugin using JW player http://www.longtailvideo.com/players/jw-flv-player/
 * SWFObject Helper v1.0
 */
function embedVideo(v,w,h)
{
  var so = new SWFObject('videos/player.swf','video:'+v,w,h,'9');
  so.addParam('allowfullscreen','true');
  so.addParam('flashvars','file='+v+'/video.mp4&image=videos/'+v+'/preview.jpg&config=videos/config.xml');
  so.write('video:'+v);
}

