function UploadFile()
{
	$('file-input').value = Form.Element.getValue('soubor');
}

function PopupWindow(href)
{
	popupWindow = window.open(href, 'popupWindow', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=600,height=600,left=200,top=50');

	popupWindow.window.focus();
	
	return false;
}

function PopupWindowShort(href)
{
	popupWindowShort = window.open(href, 'PopupWindowShort', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=600,height=400,left=200,top=50');

	popupWindowShort.window.focus();
	
	return false;
}

function NewWindow(href)
{
	newWindow = window.open(href, 'newWindow', 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=auto,height=auto');

	newWindow.window.focus();
	
	return false;
}