if (document.all) type="IE"; 
if (document.layers) type="NN";
if (!document.all && document.getElementById) type="MO";

function upali( sKojiID ) { 
  if (type=="IE") document.all[sKojiID].style.background='white';
 	if (type=="NN") document.layer['sKojiID'].bgColor='white';
 	if (type=="MO") document.getElementById(sKojiID).style.backgroundColor='white';
  
  document.getElementById( sKojiID ).style.cursor = 'hand';
  
	/*document.getElementById( sKojiID ).style.color = 'black'; 
  document.getElementById( sKojiID ).style.background = 'white'; 
  document.getElementById( sKojiID ).style.cursor = 'hand'; */
}
function ugasi( sKojiID ) { 
  if (type=="IE") document.all[sKojiID].style.background='#f6f6df';
 	if (type=="NN") document.layer['sKojiID'].bgColor='#f6f6df';
 	if (type=="MO") document.getElementById(sKojiID).style.backgroundColor='#f6f6df';

	//document.getElementById( sKojiID ).style.color = 'black'; document.getElementById( sKojiID ).style.background = ''; 
}
