<!--
/*Flashing Table Border http://www.dynamicdrive.com/dynamicindex11/other2.htm */
//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("green")!=-1)
crosstable.style.borderColor="red"
else
crosstable.style.borderColor="green"}}
setInterval("flashit()", speed)
//-->
//OK on IE 4+ and NS6+ - below code to the END right above </body> - add  class="flashit" inside the element's tag you wish to flash
