function theme(color,site)
{
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'theme=' + color + '&site='+site,'theme');
}

function aggiornatheme(tema,site)
{
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'tema=' + tema + '&site='+site,'theme');
}

function assegna_voto(nome,primo_url)
{
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'voto=' + nome + '&primo=' + primo_url,'primo_voto');
}

function scrivi()
{
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'scrivi='+ $('#scrivo').val() ,'comparsa');
}

function inviovoti(id)
{
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'inviovoti=' + id ,'votilive');
}

function GetAjaxPage(URL, Vars, ID)
{
	$.ajax(
	{type: "POST", url: URL, data: Vars,success: function(msg)
		{
			$("#" + ID).append(msg);
		}
	});
}

function GetAjaxPageH(URL, Vars, ID)
{
	$.ajax(
	{type: "POST", url: URL, data: Vars,success: function(msg)
		{
			$("#" + ID).html(msg);
		}
	});
}

function fcercautente() 
{
	var utente=$('#cercautente').val();
	$("#ricercautente").html("");
	GetAjaxPage('http://www.site-book.net/ajax/caronte.php', 'utente=' + utente,'ricercautente');
}

function fcercasito() 
{
	var sito=$('#cercasito').val();
	$("#ricercasito").html("");
	GetAjaxPage('http://www.site-book.net/ajax/caronte.php', 'site=' + sito,'ricercasito');
}

function livet(ip,user,pagina)
{
	//$("#live").html("");
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'ip=' + ip + '&user=' + user + '&pagina=' + pagina,'live');
}

function contatore(VAR)
{
	if(VAR == "NO")
		GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'contatore=' + VAR,'contatore');
	else
		GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'contatore=' + VAR,'contatore2');
}

function live(VAR)
{
	//$("#live").html("");
	GetAjaxPageH('http://www.site-book.net/ajax/caronte.php', 'live=' + live,'live');
}

