function Verwijderen(gid) {
 	var bevestig = confirm("Weet u zeker dat u deze download wilt verwijderen ?");
 	
 	if (bevestig) {
     	top.location.replace('/Administratie/Verwijder/'+gid+'.html');
 	}
}


function Confirm( Bark, URL )
{

		if ( confirm( Bark ) )
		{
		
				window.location = URL;
			
		}
		
}