There are two places to change in Forms85_x.nsf. One is
subform. Another is
subform. Below is a code sample for
. The exact same code can be applied to
1: function Custom_TimeZones_Lite(a_Table){
2: var nYear = (new Date).getFullYear();
3: var oRule = {
4: 2010: "3, -1, 6, 9, -1, 1",
5: 2011: "3, -2, 6, 9, -2, 1",
6: 2012: "3, -3, 6, 9, -3, 1"
7: };
8: a_Table.push(["Cityname" + nYear, "Cityname", "(GMT+02:00) Cityname" + nYear, 5, true, oRule[nYear]];
9: }