// JavaScript Document
<!--
var speed=1000

function flashit(){
var crosstable=document.getElementById? document.getElementById("myexample") : document.all? document.all.myexample : ""
if (crosstable){
if (crosstable.style.borderColor.indexOf("white")!=-1)
crosstable.style.borderColor="#CC0066"
else
crosstable.style.borderColor="white"
}
}
setInterval("flashit()", speed)
//-->
