function ConfirmDelete (url) {
	if (window.confirm("Opravdu chcete vymazat zvolený záznam?!")){
		parent.top.location.href=url;
	}
}
function submitcsobform (targetdomain, messa) {
  document.frmset.action = 'https://' + targetdomain + '/Channels.aspx';
  window.document.getElementById("ZPRAVA").value=messa;
  document.frmset.submit();
}
function initMenu() {
  $('#menu ul').hide();
  $('#menu ul.selected').show();
  $('#menu li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        checkElement.slideUp('normal');
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
}
$(document).ready(function() {initMenu();});
