function openwindow(url,w,h){
  var winwidth = screen.availWidth;
  var winheight = screen.availHeight;
  var leftt=Math.floor((winwidth/2)-(w/2));
  var topt=Math.floor((winheight/2)-(h/2));
  window.open(url,'popup','left='+leftt+',top='+topt+',width='+w+', height='+h+', toolbar=0,  location=0, directories=0,status=0, titlebar=0, menubar=0, resizable=1, scrollbars=1')
};

function playVideo(video){
	document.getElementById('video').innerHTML = "<embed src='/f/players/FLVPlayer_Progressive.swf' flashvars='&autoPlay=true&autoRewind=false&skinName=/f/players/Corona_Skin_3&streamName=/f/media/" + video + "' quality='high' scale='noscale' width='800' height='436' name='FLVPlayer' salign='LT' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'  wmode='transparent'>";
}
