<!--
function changeFormsView() {
	if(document.getElementById('zelkoCheckGraph').width!=1) {
		var allForms = document.getElementsByTagName('form');
		for(var w=0; w<allForms.length; w++) allForms[w].className = 'no-niceform';
		
		document.getElementById('zelkoCheckGraph').style.display = "none";
	}
}

function checkLength(sCheckId, sUpdateId, iMaxLength) {
	rCheck  = document.getElementById(sCheckId); rUpdate = document.getElementById(sUpdateId);
	
	if(rCheck.value.length>iMaxLength) rCheck.value = rCheck.value.substr(0, iMaxLength);
	
	rUpdate.innerHTML = iMaxLength - rCheck.value.length; 
}
//-->