
function online(tipo,subtipo){
	switch(tipo){
		case '125':
			hidediv('narra-250');
			hidediv('narra-GP');
			hidediv('resul-250');
			hidediv('resul-GP');
			
			
			document.getElementById('pestanna-125').className="hs5-pestannas-div-activo";
			document.getElementById('pestanna-250').className="hs5-pestannas-div";
			document.getElementById('pestanna-GP').className="hs5-pestannas-div";
			
			break;
		case '250':
			hidediv('narra-125');
			hidediv('narra-GP');
			hidediv('resul-125');
			hidediv('resul-GP');
			
			document.getElementById('pestanna-250').className="hs5-pestannas-div-activo";
			document.getElementById('pestanna-125').className="hs5-pestannas-div";
			document.getElementById('pestanna-GP').className="hs5-pestannas-div";
			break;
		case 'GP':
			hidediv('narra-125');
			hidediv('narra-250');
			hidediv('resul-125');
			hidediv('resul-250');
			document.getElementById('pestanna-GP').className="hs5-pestannas-div-activo";
			document.getElementById('pestanna-250').className="hs5-pestannas-div";
			document.getElementById('pestanna-125').className="hs5-pestannas-div";
			break;
	}
	switch(subtipo){
		case 'narra':
			showdiv('narra-'+tipo);
			hidediv('resul-'+tipo);
			break;
		case 'resul':
			showdiv('resul-'+tipo);
			hidediv('narra-'+tipo);
			break;
	}
}