﻿
//JavaScript Funksion qe mundeson ndryshimin e ngjyres 
//gjate levizjes neper rreshta. 
//---------------------------------------------------------
function ChangeColor(tableRow, highLight) {
    if (highLight) {
        tableRow.style.backgroundColor = '#e1e2e4';
    }
    else {
        tableRow.style.backgroundColor = '';
    }
}

function DoNav(theUrl) {
    document.location.href = theUrl;
}

