<!--
 
/*
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=2000
var flashingison=true;
function flashit(){
if (flashingison){
	var crosstable=document.getElementById? document.getElementById("submitbg") : document.all? document.all.submitbg : ""
	if (crosstable){
		if (crosstable.style.backgroundColor.indexOf("black")!=-1){
			crosstable.style.backgroundColor="#cc0000";
		} else {
			crosstable.style.backgroundColor="black";
		}
	}
}
}
setInterval("flashit()", speed)
//-->
