function showAdm() {
	document.location = document.location + '&logon=1';
}
function changeBG(el, dir) {
	bg = el.style.backgroundColor;
	if (dir == 'in') el.style.backgroundColor = "#e5e5e5";
	else el.style.backgroundColor = "#ffffff";
}
function delProd(pid, lang) {
	var check = confirm("Wilt u dit product verwijderen?");
	if (check) window.location = '?p=viewprod&del=1&prodid='+pid+'&lang='+lang;
}
function subFlits(naam) {
	if (!naam) naam = '';
	q = prompt("Welke naam moet het bestand krijgen",naam);
	if (q) {
		document.getElementById("naam").value = q;
		document.getElementById("flitsup").submit();
	}
}
function delFlits(nid) {
	q = confirm("Weet u zeker dat u de nieuwsflits wilt verwijderen?");
	if (q) document.location = '?p=nieuws&del='+nid;
}
function changePic(file) {
	var base = "uploads/";
	if (file) {
		document.getElementById("prodpic").src = base+file+".png";
		document.getElementById("prodpichid").value = base+file+"-small.png";
	}
}