<!-- // tells older browsers to treat the script as comments

// Find out if browser is capable of running the javascript properly

browserAcceptable = false;

if ((navigator.appVersion.charAt(1) == '.')) browserVersion = navigator.appVersion.charAt(0);
else browserVersion = 10; // we know that it must be at least 10;

if (((navigator.appName == 'Netscape') && (browserVersion > 2)) ||
                ((navigator.appName == 'Microsoft Internet Explorer') && (browserVersion > 3)))
        browserAcceptable = true;

// Update all four digits (every minute) by calling localclock weblet

function updateTime(city)
        {
        if (browserAcceptable)
                {
                now = new Date();
                nowMili = Date.UTC(now.getYear(), now.getMonth(), now.getDay(), now.getHours(), now.getMinutes(), now.getSeconds());    

                document.hourstens.src = "http://owshare.openworld.co.uk/apps/clock/clock.cgi?case=hyattregency&location=" + city + "&digitPosition=hourstens&t=" + nowMili;
                document.hoursunits.src = "http://owshare.openworld.co.uk/apps/clock/clock.cgi?case=hyattregency&location=" + city + "&digitPosition=hoursunits&t=" + nowMili;
                document.minutestens.src = "http://owshare.openworld.co.uk/apps/clock/clock.cgi?case=hyattregency&location=" + city + "&digitPosition=minutestens&t=" + nowMili;
                document.minutesunits.src = "http://owshare.openworld.co.uk/apps/clock/clock.cgi?case=hyattregency&location=" + city + "&digitPosition=minutesunits&t=" + nowMili;
        
                // Call this function every minute

                eval("setTimeout('updateTime(\"" + city + "\")', 60000)");
                }
        }


// end commenting out

//-->