var divo="";

function invia(){
	artista=document.getElementById('artinput').value;
	febbre=document.getElementById('fever').value;

	if (!febbre) {alert('seleziona il livello di interesse per '+artista); return;}
	if (!artista) {alert('Inserire il nome dell\'artista'); return;}

	crea('2',artista, febbre);
}

function scrivi(){
	artista=document.getElementById('artinput').value;
	document.getElementById('artmob').innerHTML=artista;

}



function crea(f, a, feb){

	document.getElementById('loadFanclub').style.display="inline";

	var ran=Math.random(100);
	_url="crea.php?f="+f+"&artista="+a+"&febbre="+feb+"&random="+ran;

	httpRequest("GET", _url, true, handleResponseCrea);

}




function handleResponseCrea(){

	if (request.readyState==4){
		if (request.status==200){
			var mex=request.responseText;
			document.getElementById('loadFanclub').style.display="none";
		
			if (mex=="reload") document.location.reload();
			else 	document.getElementById('Q1').innerHTML=mex;
		} 
	}


}



function chiudi(){

	document.getElementById('maschera').style.display="none";
	document.getElementById('ombra').style.display="none";
}






function listaClub(numpag, cheordine, chedirezione){

var chiave="";

	if (cheordine=="data") divo="Nuovi";
	else if (cheordine=="ricerca") {

		chiave=document.formRicerca.chiave.value;
		chiappaloscroll();

		divo="contenuto";

		document.getElementById('maschera').style.top="50%";
		document.getElementById('maschera').style.marginTop=yScroll-260+"px";

		document.getElementById('maschera').style.display="block";

		document.getElementById('ombra').style.top=yScroll;
		document.getElementById('ombra').style.left="0px";
		document.getElementById('ombra').style.width=myWidth;
		document.getElementById('ombra').style.height=myHeight;

		document.getElementById('ombra').style.display="block";



		document.getElementById('contenuto').innerHTML="loading...";

	}

	else if (cheordine=="listacompleta") {

		chiappaloscroll();

		divo="contenuto";

		document.getElementById('maschera').style.top="50%";
		document.getElementById('maschera').style.marginTop=yScroll-260+"px";

		document.getElementById('maschera').style.display="block";

		document.getElementById('ombra').style.top=yScroll;
		document.getElementById('ombra').style.left="0px";
		document.getElementById('ombra').style.width=myWidth;
		document.getElementById('ombra').style.height=myHeight;

		document.getElementById('ombra').style.display="block";



		document.getElementById('contenuto').innerHTML="loading...";

	}

	else divo="Popolari";

	var loa="load"+divo;

	if (loa != "loadcontenuto") document.getElementById(loa).style.display="inline";

	var ran=Math.random(100);
	_url="listaclub.php?numpag="+numpag+"&cheordine="+cheordine+"&chedirezione="+chedirezione+"&random="+ran+"&chiave="+chiave;

	httpRequest("GET", _url, true, handleResponseClub);

}




function handleResponseClub(){

	if (request.readyState==4){
		if (request.status==200){
			var mex=request.responseText;

			var loa="load"+divo;	
			if (divo!="contenuto") var di="div"+divo;
			else di="contenuto";

			if (loa != "loadcontenuto") document.getElementById(loa).style.display="none";
		
			document.getElementById(di).innerHTML=mex;
		} 
	}


}



