function typ(hodnota)
{
document.downloader.format.value = hodnota;
document.downloader.submit.value = "Stáhnout video ve formátu " + hodnota;

if (hodnota == "flv") {
document.getElementById('_flv').className = 'bold';
document.getElementById('_mp4').className = 'normal';
document.getElementById('_3gp').className = 'normal';
}
if (hodnota == "mp4") {
document.getElementById('_flv').className = 'normal';
document.getElementById('_mp4').className = 'bold';
document.getElementById('_3gp').className = 'normal';
}
if (hodnota == "3gp") {
document.getElementById('_flv').className = 'normal';
document.getElementById('_mp4').className = 'normal';
document.getElementById('_3gp').className = 'bold';
}

}