function Product(PID, PName) { this.PID = PID; this.PName = PName; } function viewProducts(GroupObj, ProductObj, ProductID) { ProductObj.options.length = 0; if( GroupObj.length > 0 ) { var lSize = arrProducts[GroupObj].length; for (i = 0; i < lSize; i++) { selected = (arrProducts[GroupObj][i].PID == ProductID) ? true : false; ProductObj[ProductObj.length] = new Option(arrProducts[GroupObj][i].PName, arrProducts[GroupObj][i].PID, false, selected); } } } function viewProduct(id, gid) { location.href = '/webshop/productinfo.php?ws_groupid=' + gid + '&ws_productid=' + id; } var arrProducts = new Array(50); nIndex=0; arrProducts["0"] = new Array(); arrProducts["0"][nIndex++] = new Product("0", "Välj produktmodel"); nIndex=0; arrProducts["12"] = new Array(); arrProducts["12"][nIndex++] = new Product("0", "Välj modell");