// JavaScript Document
function filtrByPatient(name)
	{
		value=name.options[name.selectedIndex].value;	
		url="index.php?patient="+value;
		window.location.href=url;
	}
function filtrByTyp(name)
	{
		value=name.options[name.selectedIndex].value;	
		url="index.php?typ="+value;
		window.location.href=url;
	}
function filtrByDate(name)
	{
		value=name.options[name.selectedIndex].value;	
		url="index.php?date="+value;
		window.location.href=url;
	}
