<!--

/*
Flashing Table Border Script- © Dynamic Drive (www.dynamicdrive.com)
Visit http://www.dynamicdrive.com for this script
Credit must stay intact for use
*/

//configure interval btw flash (1000=1 second)
var speed=500

function flashit(){
var crosstable=document.getElementById? document.getElementById("myexample") : document.all? document.all.myexample : ""
if (crosstable){
if (crosstable.style.borderColor.indexOf("660000")!=-1)
crosstable.style.borderColor="#ff0000"
else
crosstable.style.borderColor="#660000"
}
}
setInterval("flashit()", speed)
//-->