function ShowVideo(flv,title,widescr){
    var width = widescr ? 854 : 640;
    var height = 480+24;
    var f = window.open("/video.php?flv="+flv+"&title="+title+"&w="+width+"&h="+height, "video","menubar=0,resizable=0,location=0,status=0,scrollbars=0,width="+width+",height="+height);
    f.focus();
    return false;
}
