//Dictionary js
//igényli a prototype-ot

//
function contentManS(app, page, id){
  windowopen('../dict.php?app='+app+'&page='+page+'&id='+id, 'Tartalom módosítás', 800, 800);


}
function windowopen(url, name, w, h){
	window.open(url,"",'width='+w+',height='+h+', hotkeys=no,status=no,menubar=no,location=no,directories=no,toolbar=no,alwaysRaised=no,titlebar=no');
}
function showInCmsDiv(){
  var showInCmsDiv = document.createElement('div');
  showInCmsDiv.innerHTML= 'Karbantartás';
  showInCmsDiv.id = 'showCMTitle';
  document.body.appendChild(showInCmsDiv);
}
