function UploadFile()
{
	if (document.getElementById('plik').value == '')
	{
		alert('Musisz wskazać jakiś plik.');
		return false;
	}

	if ($('#tytul').val() == '')
	{
		alert('Musisz podać tytuł filmu. Maksymalnie 120 znaków.');
		return false;
	}	
	
	if ($('#opis').val() == '')
	{
		alert('Musisz podać opis filmu. Maksymalnie 200 znaków.');
		return false;
	}
	
	document.getElementById('upload_box').style.display = 'none';
	document.getElementById('mbox').style.display = 'none';
	document.getElementById('filmbox').style.display = 'none';
	document.getElementById('upload_wait').style.display = 'block';
	return true;
}

function LadujFilm(film, ident)
{
	$('#moviebox').hide();
	$('#moviebox').html('<font color="green"><img src="/images/load.gif">&nbsp;Proszę czekać trwa ładowanie filmu '+film+'...</font><br/><br/>');
	$('#moviebox').fadeIn(800);
	$('#moviebox').load('/ajaxvideo/'+ident);
	return false;
}

var pokazany = 'thumbimage';
function Show(toshow, tohide)
{
	//if (pokazany != tohide) return;
	//pokazany = toshow;
	$('#'+toshow).show();
	$('#'+tohide).hide();
	
}

function GenerujMiniature(video_server, ident)
{
	$('#thumbbox').html('Proszę czekać trwa generowanie miniatury...');
	$('#thumbbox').load('/thumbgenerator/'+ident);
	return false;

}

