//configure interval btw flash (1000=1 second)
var speed=2000

function flashit(){
var crosstable=document.getElementById? document.getElementById("flashingborder") : document.all? document.all.myexample : ""
if (crosstable){
if (crosstable.style.borderColor.indexOf("#23238e")!=-1)
crosstable.style.borderColor="#ffffff"
else
crosstable.style.borderColor="#23238e"
}
}
setInterval("flashit()", speed)