﻿// JScript File

// GRID SATIRLARINI RENKLERDIRME.
var oldgridSelectedColor;

function setMouseOverColor(element)
{
    oldgridSelectedColor = element.style.backgroundColor;
    element.style.backgroundColor='#CDB4C8';
    element.style.cursor='hand'; 
}

function setMouseOutColor(element)
{
    element.style.backgroundColor=oldgridSelectedColor;
    element.style.textDecoration='none';
}
function setMouseOverColorIhale(element)
{
    oldgridSelectedColor = element.style.backgroundColor;
    element.style.backgroundColor='gainsboro';
    element.style.cursor='hand'; 
}

function setMouseOutColorIhale(element)
{
    element.style.backgroundColor=oldgridSelectedColor;
    element.style.textDecoration='none';
}


