
function prendiElementoDaId(idElemento)
{
	var elemento;
	if(document.getElementById)
	{
		elemento = document.getElementById(idElemento);
	}
	else
	{
		elemento = document.all[idElemento];
	}
	return elemento;
}	
		
function ReloadHotlap1()
{
	FiltroTipoSessione= document.getElementById('tses').value;
	FiltroMod= document.getElementById('mod').value;
	
	OnlyLast= document.getElementById('lhl_h').value;			
	OnlyGTIRS= document.getElementById('gtirs_h').value;			
	OldMod= document.getElementById('omod').value;
	OldPista= document.getElementById('otrk').value;
	OldNick= document.getElementById('onick').value;

	DMin= document.getElementById('dmin').value;
	DMax= document.getElementById('dmax').value;	

	window.open("Hotlaps.php?trk=" + "&mod=" + FiltroMod + "&veh=" + "&nick=" + "&tses=" + FiltroTipoSessione + "&omod=" + OldMod + "&otrk=" + OldPista + "&onick=" + OldNick + "&gtirs=" + OnlyGTIRS + "&lhl=" + OnlyLast + "&dmin=" + DMin + "&dmax=" + DMax, "_self");
}

function ReloadHotlap2()
{
	FiltroTipoSessione= document.getElementById('tses').value;
	FiltroPista= document.getElementById('trk').value;
	
	OnlyLast= document.getElementById('lhl_h').value;			
	OnlyGTIRS= document.getElementById('gtirs_h').value;			
	OldMod= document.getElementById('omod').value;
	OldPista= document.getElementById('otrk').value;
	OldNick= document.getElementById('onick').value;

	DMin= document.getElementById('dmin').value;
	DMax= document.getElementById('dmax').value;	

	window.open("Hotlaps.php?trk=" + FiltroPista + "&mod=" + OldMod + "&veh=" + "&nick=" + "&tses=" + FiltroTipoSessione + "&omod=" + OldMod + "&otrk=" + OldPista + "&onick=" + OldNick + "&gtirs=" + OnlyGTIRS + "&lhl=" + OnlyLast + "&dmin=" + DMin + "&dmax=" + DMax, "_self");
}

function ReloadHotlap3()
{
	FiltroTipoSessione= document.getElementById('tses').value;
	FiltroNick= document.getElementById('nick').value;

	OnlyLast= document.getElementById('lhl_h').value;			
	OnlyGTIRS= document.getElementById('gtirs_h').value;			
	OldMod= document.getElementById('omod').value;
	OldPista= document.getElementById('otrk').value;
	OldNick= document.getElementById('onick').value;

	DMin= document.getElementById('dmin').value;
	DMax= document.getElementById('dmax').value;	

	window.open("Hotlaps.php?trk=" + OldPista + "&mod=" + OldMod + "&veh=" + "&nick=" + FiltroNick + "&tses=" + FiltroTipoSessione + "&omod=" + OldMod + "&otrk=" + OldPista + "&onick=" + OldNick + "&gtirs=" + OnlyGTIRS + "&lhl=" + OnlyLast + "&dmin=" + DMin + "&dmax=" + DMax, "_self");
}

function ReloadHotlap4()
{
	FiltroTipoSessione= document.getElementById('tses').value;
	FiltroVeh= document.getElementById('veh').value;
	
	OnlyLast= document.getElementById('lhl_h').value;			
	OnlyGTIRS= document.getElementById('gtirs_h').value;			
	OldMod= document.getElementById('omod').value;
	OldPista= document.getElementById('otrk').value;
	OldNick= document.getElementById('onick').value;

	DMin= document.getElementById('dmin').value;
	DMax= document.getElementById('dmax').value;	

	window.open("Hotlaps.php?trk=" + OldPista + "&mod=" + OldMod + "&veh=" + FiltroVeh + "&nick=" + OldNick + "&tses=" + FiltroTipoSessione + "&omod=" + OldMod + "&otrk=" + OldPista + "&onick=" + OldNick + "&gtirs=" + OnlyGTIRS + "&lhl=" + OnlyLast + "&dmin=" + DMin + "&dmax=" + DMax, "_self");
}

function AllLastHL()
{
	OnlyLast= document.getElementById('lhl').value;
	OnlyGTIRS= document.getElementById('gtirs_h').value;
	DMin= document.getElementById('dmin').value;
	DMax= document.getElementById('dmax').value;		
	window.open("Hotlaps.php?lhl=" + OnlyLast + "&dmin=" + DMin + "&dmax=" + DMax + "&gtirs=" + OnlyGTIRS, "_self");
}

function AllGTIRS()
{
	OnlyLast= document.getElementById('lhl_h').value;
	OnlyGTIRS= document.getElementById('gtirs').value;
	DMin= document.getElementById('dmin').value;
	DMax= document.getElementById('dmax').value;		
	Trk= document.getElementById('trk').value;		
	Veh= document.getElementById('veh').value;		
	Nick= document.getElementById('nick').value;		
	OMod= document.getElementById('omod').value;		
	OTrk= document.getElementById('otrk').value;		
	ONick= document.getElementById('onick').value;	
	
	window.open("Hotlaps.php?lhl=" + OnlyLast + "&dmin=" + DMin + "&dmax=" + DMax + "&gtirs=" + OnlyGTIRS + "&trk=" + OnlyGTIRS + "&veh=" + Veh + "&nick=" + Nick + "&mod=" + OMod + "&omod=" + OMod + "&trk=" + OTrk + "&otrk=" + OTrk + "&onick=" + ONick	, "_self");
}

