var speed=500

function flashit(){
var crosstable=document.getElementById? document.getElementById("myexample") : document.all? document.all.myexample : ""
if (crosstable){
if (crosstable.style.borderColor.indexOf("black")!=-1)
crosstable.style.borderColor="#9A8048"
else
crosstable.style.borderColor="black"
}
}
setInterval("flashit()", speed)