<!-- 
var yeniColTbl = new Array(); 
yeniColTbl[0] = "#00FF00"; 
yeniColTbl[1] = "#000000"; 

var yeniTimeout = 500; 

function yeniy() { 
var yeniTimeout = 10000000; 
yeni(); 
} 
function zucki() { 
var yeniTimeout = 20000000; 
yeni();} 

var yeniIdx = 0; 
function yeni () { 
if ( document.all && document.all.yeni ) { 
yeniIdx = (yeniIdx+=1) % 2 ; 
var color = yeniColTbl [ yeniIdx ]; 
if ( document.all.yeni.length ) { 
for(i=0;i<document.all.yeni.length;i++) 
document.all.yeni[i].style.color=color; 
} else 
document.all.yeni.style.color=color; 
setTimeout( "yeni();" , yeniTimeout); 
} 
} 
//-->