﻿/* puslapio refresh'inimas */
function timeoutReload(count, time) {
    if (count != 1) {
        count--
        window.status = 'užkrauta ' + time + ', atsinaujina po ' + count + ' s.';
        reloadCountdown = window.setTimeout("timeoutReload(" + count + ",'" + time + "')", 1000);
    } else {
        document.location.href = document.location.href;
    }
}


/*	rows'u highlightinimas
slight - Set Light
clight - Clear Light
*/
var light = 'n';

function slight() {
    light = slight.arguments[0];
    document.getElementById(light).style.backgroundColor = 'lightblue';
}

function clight() {
    document.getElementById(light).style.backgroundColor = 'white';
}