function showvideo(videoid,vwidth,vheight)
{

  var movie=document.getElementById('video'+videoid);
  var div=document.createElement('div');
  if (videoid==null) return false;
  div.style.position='absolute';
  if (vwidth==null) vwidth=440;
  if (vheight==null) vheight=670;
  div.style.width='440px';
  div.style.height='300px';
  div.style.top=vheight+'px';
    div.style.left=vwidth+'px';
  div.style.borderWidth='1px';
  div.style.borderColor='black';
  div.style.backgroundColor='#9f6e36';
div.innerHTML="<a href=\"#\" onClick=\"this.parentNode.parentNode.removeChild(this.parentNode);setTimeout('document.getElementById(\\\'video"+videoid+"\\\').onclick=function onclick(event) {showvideo("+videoid+",0,0);}',10);return false\" style=\"float:right;\"><img src=\"/image/close.png\"></a><object width='440' height='300' id='flvPlayer'><param name='allowFullScreen' value='true'><param name='movie' value='/advantages/player.swf?movie=uploaded/"+videoid+".flv&fgcolor=0xA7d8c2&bgcolor=0x9f6e36&autoplay=on&volume=70'><embed src='/advantages/player.swf?movie=uploaded/"+videoid+".flv&fgcolor=0xA7d8c2&bgcolor=0x9f6e36&autoplay=on&volume=70' width='440' height='300' allowFullScreen='true' type='application/x-shockwave-flash'></object>";
   movie.appendChild(div);
   movie.onclick='';
}