function toggleDiv(dname) {
	var e = document.getElementById(dname);
	
  if(e.style.display=='none') {
    e.style.display='block';
  }else{
    e.style.display='none';
  }
}

function casovac() {
  
  //alert('newshit');
  //var e=document.getElementById('nic');
  //v=e.innerHTML;
  
  //n++;
  //n=parseInt(n);
  //n=n+1;
  //n++;
  
  //e.value=n;
  //alert(n);
  n=document.forms["chatF"].cnt.value;
  if(n=='-') {
  }else{
    n--;
    if(n<0) { document.location.href='chat.php?size=mini'; n='-'; }
    document.forms["chatF"].cnt.value=n;
    var t=setTimeout("casovac()", 1000);
  }
}
function casovacBig() {
  
  //alert('newshit');
  //var e=document.getElementById('nic');
  //v=e.innerHTML;
  
  //n++;
  //n=parseInt(n);
  //n=n+1;
  //n++;
  
  //e.value=n;
  //alert(n);
  n=document.forms["chatF"].cnt.value;
  if(n=='-') {
  }else{
    n--;
    if(n<0) { document.location.href='chat.php'; n='-'; }
    document.forms["chatF"].cnt.value=n;
    var t=setTimeout("casovacBig()", 1000);
  }
}
