function sureForm(curr_data){
	if (confirm('Are you sure to delete this data :  '+curr_data+' ?')){
		location.href = 'admin_del.php?godel='+katestr;
	}
	else{
		return false;
	}
	}
	
function sureRemove(curr_data){
	if (confirm('Are you sure to remove this data :  '+curr_data+' from this article ?')){
		location.href = 'admin_del.php?godel='+katestr;
	}
	else{
		return false;
	}
	}
	
	

function textCounter(textarea, counterID, maxLen,areacolor) {
	cnt = document.getElementById(counterID);
	if (textarea.value.length > maxLen)
	{
		document.getElementById(areacolor).style.backgroundColor= "#FFCC00";
	}
		cnt.innerHTML = 0 + textarea.value.length;
	}