/*function checkLimitChars(){
	input = document.getElementById('comment').value;
	count = input.length;
	limit = 160;
	if(count>limit){
		newval = input.substring(0, limit);
		document.getElementById('comment').value = newval;
		//alert('You have exceed the character limit.');
	}

	limit_char = limit - count
	if(limit_char<0)
		limit_char = 0;	
	document.getElementById('limit-char').innerHTML = limit_char;
}

function checkCommentForm(){
	input = document.getElementById('comment').value;
	count = input.length;
	if(count == 0){
		alert('Kérlek írj be valamit az üzenet mezobe!');
		return false;
	}
	
	return true;
}*/
