/**
 * This file contains JavaScripts for the Pflegeatlas WebInterface 
 * @author Konrad Kleine
 * $Id:$
 */

/**
 * Clears all checkboxes in the pawi search formular
 */
function pawi_clearCheckBoxes()
{
	for (i=0; i < document.forms.pawi.elements.length; i++)
	{
		if (document.forms.pawi.elements.type ="checkbox")
		{
			document.forms.pawi.elements[i].checked = 0;
		}		
	}
}