//-- Simple Timezone Location for UK / ROW
//-- Copyright 2007 Network Theory Ltd

//-- This program is free software: you can redistribute it and/or modify
//-- it under the terms of the GNU General Public License as published by
//-- the Free Software Foundation, either version 3 of the License, or
//-- (at your option) any later version.

function set_uk_option (element, k) {
    var tzo=new Date();
    var off=tzo.getTimezoneOffset()/60;
    if (off == 0 || off == -1) {         //-- GMT/BST, set values for UK
        element.dest.selectedIndex = k;  
        element.s.value = 1;
    }
}
