function confirmSubmit(value)
{
	var agree=confirm("Weet u zeker dat u " + value + " wilt verwijderen?");
	if (agree)
    {
		return true ;
    }
	else
    {
		return false ;
    }
}

function getProvincie(field, event, value)
{ 
	document.location = "/admin/index.php?pr=" + value;
}

function getRubriek(field, event, value)
{ 
	document.location = "/admin/index.php?rb=" + value;
}

function getActief(field, event, value){
	document.location = "/admin/index.php?actief=" + value;
}

function confirmSubmit2(value)
{
	var agree = confirm(value);
	if (agree)
    {
		return true ;
    }
	else
    {
		return false ;
    }
}

function switch_in(_this)
{
    document.getElementById(_this).src = '/gfx/'+ _this +'_up.gif';
}

function switch_out(_this)
{
    document.getElementById(_this).src = '/gfx/'+ _this +'.gif';
}
