Quote
THIS IS A VERY BOLD |
<script language="javascript">
function OffOn(xx,yy) {
var theSpan1 = xx;
var theSpan2 = yy;
if (theSpan1.style.display == "none") {
theSpan1.style.display = "";
}
else if (theSpan1.style.display == "") {
theSpan1.style.display = "none";
}
else {
theSpan1.style.display = "none";
}
if (theSpan2.style.display == "none") {
theSpan2.style.display = "";
}
else if (theSpan2.style.display == "") {
theSpan2.style.display = "none";
}
else {
theSpan2.style.display = "none";
}
}
setTimeout("OffOn(spA,sp0);",1000);
setTimeout("OffOn(sp0,sp1);",2500);
setTimeout("OffOn(sp1,sp2);",4000);
setTimeout("OffOn(sp2,sp3);",6500);











