function show(id)
{
	if (document.getElementById(id).style.display == 'block')
		document.getElementById(id).style.display = 'none';
	else
		document.getElementById(id).style.display = 'block';
}

function search_analizes()
{
	window.document.location.href="/analizes/?s="+document.getElementById("search_input").value;
}

function show_details(id)
{
	window.open("/scripts/details.php?id="+id,"","width=700px, height=600px, scrollbars=1");
}
