function toggleBox(id, id2){
	var box = document.getElementById(id);
	var box2 = document.getElementById(id2);
	if(box){
		if(box.style.display=='none'){
			box.style.display = 'inline';
		}else{
			box.style.display = 'none';
		}
	}
	if(box2){
		if(box2.style.display=='none'){
			box2.style.display = 'inline';
		}else{
			box2.style.display = 'none';
		}
	}
}
function save_content(form, cid){
	var text = encodeURIComponent(form.content.value);
	if(text.length > 1200){
		return true;
	}else{
		toggleBox(cid, cid+'_edit');
		ajax('/content_edit.php?cmd=save&cid='+cid+'&content='+text, cid);
		return false;
	}
	return false;
}
function get(div){
	return document.getElementById(div);
}