function deleteRecord(url, type){
	if(confirm("Weet u zeker dat u " + type + " wilt verwijderen?"))
	{
		window.location = url;
	}
}

function wijzigUrl(url){
	this.location = url;	
}


function confirmEmpty() {
	return confirm("Weet u zeker dat u uw winkelmandje wil legen?");		
}

function confirmDelete() {
	return confirm("Weet u zeker dat u dit product wil verwijderen?");		
}
