
// UsiCMS: MODULES/CLANEK/CORE.SCRIPT.JS
// --------------------------------
// javascript pro modul Článek
// win1250, (c) UsiReV 2009
// --------------------------------

function remove() {
  var selectx = document.getElementById('category');
  for(i = selectx.options.length - 1; i >= 0; i--) {
    selectx.remove(i);
  }
}

function append(value, caption) {
  var elOptNew = document.createElement('option');
  elOptNew.value = value;
  elOptNew.text = caption;
  var selectx = document.getElementById('category');
  try {
    selectx.add(elOptNew, null);
  }
  catch(ex) {
    selectx.add(elOptNew);
  }
}

function check(formular) {
  var strerr = '';
  if(formular.title.value=='') strerr += "název článku\n";
  if(strerr!='') {
    vysledek = false;
    alert("Níže uvedená pole nejsou vyplněna:  \n\n" + strerr);
    return false;
  }
  return true;
}

function sendform(action, article) {
  if(!article) {
    alert("Nebylo vyplněno ID článku!");
    return false;
  }
  window.location.href = "/clanek/"+action+"/"+article;
}

function sortform(action, sort, order, limit) {
  window.location.href = "/clanek/"+action+"/"+sort+"/"+order+"/"+limit;
}

function reg(element) {
 window.open("/scripts/regions.php?codes="+document.getElementById(element).value, "shopy", "toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes,resizable=yes,status=yes,width=400,height=520");
}

function browse(element) {
  openSwampyBrowser(element, "", "image", window);
  //window.open("/scripts/browse.php?element="+element, "browser", "toolbar=yes,scrollbars=yes,resizable=yes,height=600,width=820");
}

tinyMCE.init({
	mode : "exact",
	elements : "perex,story",
	theme : "advanced",
	language : "cs",
  plugins : "advimage,advlink,contextmenu,emotions,fullscreen,inlinepopups,insertdatetime,linkautodetect,media,nonbreaking,paste,visualchars,wordcount",
	theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,blockquote,|,pastetext,pasteword,undo,redo,|,visualchars,nonbreaking",
	theme_advanced_buttons2 : "link,unlink,anchor,image,|,insertdate,inserttime,|,sub,sup,|,charmap,emotions,media,|,forecolor,backcolor,|,fullscreen,cleanup,code",
	theme_advanced_buttons3 : "",
	theme_advanced_buttons4 : "",
	theme_advanced_toolbar_location : "top",
	theme_advanced_toolbar_align : "left",
	theme_advanced_statusbar_location : "bottom",
	external_link_list_url : "lists/link_list.js",
	external_image_list_url : "lists/image_list.js",
	media_external_list_url : "lists/media_list.js",
	entities : "160,nbsp,38,amp,34,quot,162,cent,8364,euro,163,pound,165,yen,169,copy,174,reg,8482,trade,8240,permil,60,lt,62,gt,8804,le,8805,ge,176,deg,8722,minus",	
	plugin_insertdate_dateFormat : "%d.%m.%Y",
	plugin_insertdate_timeFormat : "%H:%M:%S",
	relative_urls : false,
	remove_script_host : false,
	verify_html : false,
	file_browser_callback : "openSwampyBrowser"
});

