var fontSize = 12;

function incFont() {
  fontSize = fontSize + 1;
  if ( fontSize > 20 ) fontSize = 20; 
  document.getElementById('article').style.fontSize = fontSize + 'px';
}

function decFont() {
  fontSize = fontSize - 1;
  if ( fontSize < 10 ) fontSize = 10; 
  document.getElementById('article').style.fontSize = fontSize + 'px';
}

function textCount() {
  chars=document.getElementById("hozzaszolas_szoveg").value.length;
  document.getElementById("hozzaszolas_karakterszam").value=chars;
  if (chars>=100) {
	document.getElementById("hozzaszolas_gomb").disabled=false;
	document.getElementById("hozzaszolas_gomb").className='gomb_en';
  } else {
	document.getElementById("hozzaszolas_gomb").disabled=true;
	document.getElementById("hozzaszolas_gomb").className='gomb_ds';
  }
}

//function showLoading() {
//	toggleForm(document.filters,true);
//	document.getElementById('loading').style.display='block';
//}

//function hideLoading() {
//	toggleForm(document.filters,false);
//	document.getElementById('loading').style.display='none';
//}

function reloadComments(id,page) {
  $('#hozzaszolasok').load(
    '/cikk_hozzaszolasok.php',
    'id='+id+'&page='+page//,
//    function() { hideLoading(); }
  );
//  showLoading();
}
