
var exts = "flv|mov|mpeg|mpg|avi|wmv|mp4|rm";

function StartUpload(f1, video_id)
{
    if(f1.file_1.value==""){alert('Musíte vybrat video'); return false;};
    if(!checkExt(f1.file_1.value)) return false;
    document.getElementById('upload_status').style.height='150px';
    document.getElementById('upload_status').style.width='350px';
    document.getElementById('upload_status').style.display='block';
    document.getElementById('upload_status').src='http://www.zona24.cz/cgi-bin/upload_status.cgi?upload_id='+video_id;
    return true;
}

function checkExt(value)
{
    if(value=="")return true;
    var re = new RegExp("^.+\.("+exts+")$","i");
    if(!re.test(value))
    {
        alert("Tento typ videa není podporován: \n" + value + "\n\nPouze tyto typy formátů jsou povoleny: "+exts.replace(/\|/g,',')+" \n\n");
        return false;
    }
    return true;
}

