function saveText(prefix, tag_id, page){

    $.post(prefix+"/savetext.php?r="+Math.random(), {"tag_id":tag_id, "page":page, "text":encodeURI(document.formText.text.value)}, function(data){
	if(data=="1"){
	    alert("Текст сохранен");
	}
    });

    return false;
}

