﻿function ChangeImage(table){
//var table = document.getElementById(cell);
//alert(cell);
 if(navigator.appName == 'Microsoft Internet Explorer') {
table.firstChild.childNodes[1].style.backgroundImage = 'url(images/goldwindow.gif)';
}
else
{
//tablonun ilk satırının 2. hücresinin background'u değişir.
 table.childNodes[0].childNodes[1].style.backgroundImage = 'url(images/goldwindow.gif)';
}
}

function ChangeNormalImage(table){
if(navigator.appName=='Microsoft Internet Explorer') {
table.firstChild.childNodes[1].style.backgroundImage = '';
}
else
{
 table.childNodes[0].childNodes[1].style.backgroundImage = '';
}
}


