<!--

/*

*/

//configure interval btw flash (1000=1 second)
var speed=500

function flashit(){
var crosstable=document.getElementById? document.getElementById("flt") : document.all? document.all.flt : ""
if (crosstable){
if (crosstable.style.borderColor.indexOf("red")!=-1)
crosstable.style.borderColor="orange"
else
crosstable.style.borderColor="red"
}
}
setInterval("flashit()", speed)
//-->