function checkAll(field)
{
	for(i = 0; i < field.length; i++)
	{
		field[i].checked = true;
	}
}

function uncheckAll(field)
{
	for(i = 0; i < field.length; i++)
	{
		field[i].checked = false;
	}
}
 
 // voor het clearen van textboxes onload 
 function doClear(obj) 
{
     obj.value = ""
     
 }
