function foto(){

	url = document.location.href;
	xend = url.lastIndexOf("/") + 1;
	var base_url = url.substring(0, xend)+ "?page=shop&foto";

	// Create new JS element
	var jsel = document.createElement('script');
	jsel.type = 'text/javascript';
	jsel.src = base_url;
	jsel.setAttribute("id","fotoupdate");

	// Remove existing script tag
	if (document.getElementById('fotoupdate')){
		var foto = document.getElementById('fotoupdate');
		document.body.removeChild(foto);
	}

	// Append JS element (therefore executing the 'AJAX' call)
	document.body.appendChild (jsel);

}

function bevestig(naam){
	return confirm("Weet u zeker dat u '"+ naam +"' uit uw winkelwagen wilt verwijderen?");
}
