/*
Copyright (C) 2007  School voor de Toekomst/CTL Web 2.0 filters

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/
var filterFuncSamen = function (ds, row, rowNumber)
{
		if (row["samenwerken"] == "1")
			return row;
		return null;
}


var filterFuncXternSamen = function (ds, row, rowNumber)
{
		if ((row["xternsamen"] != "1") && (row["samenwerken"] == "1"))
			return row;
		return null;
}

var filterFuncMM = function (ds, row, rowNumber)
{
		if (row["media"] == "1")
			return row;
		return null;
}

var filterFuncSend = function (ds, row, rowNumber)
{
		if (row["verzenden"] == "1")
			return row;
		return null;
}

var filterFuncZoek = function (ds, row, rowNumber)
{
		if (row["zoeken"] == "1")
			return row;
		return null;
}

var filterFuncStudent = function (ds, row, rowNumber)
{
		if (row["student"] == "1")
			return row;
		return null;
}

var filterFuncComm = function (ds, row, rowNumber)
{
		if (row["communiceren"] == "1")
			return row;
		return null;
}

var filterFuncStruct = function (ds, row, rowNumber)
{
		if (row["structureren"] == "1")
			return row;
		return null;
}

// JavaScript Document