var arrProdAgra = new Array(0,1,2,3,4,5,6,7,8,9,11,13,14,15,16,18,21,22,25,26,35);
var arrProdSpec = new Array(1,6,8,14,17,18,20,24,25,26,28,29,31,32,35);
var arrProdTuin = new Array(18,21,22,26,33);
var arrProdPref = new Array(1,2,5,8,21,22,26,33);
var arrProdSilo = new Array(); arrProdSilo[0] = 27;
var arrProdWwtr = new Array(); arrProdWwtr[0] = 36;
var arrProdEmst = new Array(); arrProdEmst[0] = 37;
function hlProdAgra() { clrProds(); for (i = 0 ; i < arrProdAgra.length ; i++) if (elm = document.getElementById("aProd"+arrProdAgra[i])) elm.className = "prodNormal"; }
function hlProdSpec() { clrProds(); for (i = 0 ; i < arrProdSpec.length ; i++) if (elm = document.getElementById("aProd"+arrProdSpec[i])) elm.className = "prodNormal"; }
function hlProdTuin() { clrProds(); for (i = 0 ; i < arrProdTuin.length ; i++) if (elm = document.getElementById("aProd"+arrProdTuin[i])) elm.className = "prodNormal"; }
function hlProdPref() { clrProds(); for (i = 0 ; i < arrProdPref.length ; i++) if (elm = document.getElementById("aProd"+arrProdPref[i])) elm.className = "prodNormal"; }
function hlProdSilo() { clrProds(); for (i = 0 ; i < arrProdSilo.length ; i++) if (elm = document.getElementById("aProd"+arrProdSilo[i])) elm.className = "prodNormal"; }
function hlProdWwtr() { clrProds(); for (i = 0 ; i < arrProdWwtr.length ; i++) if (elm = document.getElementById("aProd"+arrProdWwtr[i])) elm.className = "prodNormal"; }
function hlProdEmst() { clrProds(); for (i = 0 ; i < arrProdEmst.length ; i++) if (elm = document.getElementById("aProd"+arrProdEmst[i])) elm.className = "prodNormal"; }
function hlProdAll() {
	for (i = 0 ; i <= 37 ; i++) {
		if (elm = document.getElementById("aProd"+i))
			elm.className = "prodNormal";
	}
}
function unhlProds() {
}
function clrProds() {
	for (i = 0 ; i <= 37 ; i++) {
		if (elm = document.getElementById("aProd"+i))
			elm.className = "prodDisabled";
	}
}
function goPrice (prod) {
	var wh = winOpen ("shdisc.php?id=" + prod + "&tp=p", "sw_pric", 780, 550, false);
	wh.focus();
	return false;
}
function goProduct (prod) {
	var wh = winOpen ("shdisc.php?id=" + prod + "&tp=i", "sw_prod", 780, 550, false);
	wh.focus();
	return false;
}
function goCert (cert) {
	var wh = winOpen ("pdf/" + cert, "sw_cert", 780, 550, false);
	wh.focus();
	return false;
}
function goVoor() {
	var wh = winOpen ("pdf/Swaans.Algemene_voorwaarden.pdf", "sw_voor", 780, 550, false);
	wh.focus();
	return false;
}