function rebuildRegion() 
{
// cette fonction calcule et affiche le nombre de caracteres 

	regionBranche = document.form1.suchRegionBranche.value;
	kt = document.form1.kt.value;
	
	ref = 'agenten.cfm?suche=region&suchRegionBranche=' + regionBranche;
	
	if (kt != '')
	{
		ref = ref + '&kt=' +  kt;
	}
	top.location.href = ref;
	
}
function rebuildTable() 
{
// cette fonction calcule et affiche le nombre de caracteres 

	eps = document.form2.eps.value;
	suche = document.form1.suche.value;
	
	if (suche == '')
	{
		ref = 'agenten.cfm?eps=' + eps;
	}
	if (suche == 'text')
	{
		suchText = document.form1.suchTextRemember.value;
		ref = 'agenten.cfm?suche=text&suchText=' + suchText + '&eps=' + eps;
	}
	if (suche == 'branche')
	{
		suchBranche = document.form1.suchBranche.value;
		ref = 'agenten.cfm?suche=branche&suchBranche=' + suchBranche + '&eps=' + eps;
	}
	if (suche == 'region')
	{
		suchRegionBranche = document.form1.suchRegionBranche.value;
		kt = document.form1.kt.value;
		ref = 'agenten.cfm?suche=region&suchRegionBranche=' + suchRegionBranche + '&eps=' + eps;
		
		if (kt != '')
		{
			ref = ref + '&kt=' +  kt;
		}
	}
	
	top.location.href = ref;
	
}