/********************************************
*											*
*		F U N Z I O N I  C O M U N I		*
*		   basate su Jquery 1.3.2			*
*											*
*********************************************/
function hidediv(id)
{ 
	$('#'+id).hide('fast');
}
function showdiv(id) 
{ 
	$('#'+id).show('fast');
}
function ShowHide(id) {
	$('#'+id).toggle('fast');
}
function grande (){
	$('#testo').css('font-size',"1.3em");
}
function piccolo (){
	$('#testo').css('font-size',"0.7em");
}
function normale (){
	$('#testo').css('font-size',"small");
}
function expsession_popup() {
	window.open ("../editor/edit.php5",
"mywindow","menubar=1,resizable=1,width=350,height=250"); 
}
function setAzione(xvalue) {
	document.editor.target = "";
	document.editor.azione.value = xvalue;
	if (xvalue == 'anteprima') 
		document.editor.target = "_blank";
}
function inviaCommento(atarget, x) {
	content = $('#'+atarget).html();
	var options = { 
        target:        atarget,   // target element(s) to be updated with server response 
        success: function(responseText,statusText){
					$("#"+atarget).html(responseText);
					setTimeout('$("#'+atarget+'").html(content);', 1000);	
			},
        dataType:  'text'        // 'xml', 'script', or 'json' (expected server response type) 
    }; 
    $("#"+x.id).ajaxSubmit(options);  
}