<html> <head></head> <body>
<table border="0" width="280" id="myexample" style="border:5px solid yellow">
<tr> <td>
相见欢 李煜<br><br>
无言独上西楼,<br>
月如钩,<br>
寂寞梧桐深院锁清秋。<br><br>
剪不断,<br>
理还乱,<br>
是离愁,<br>
别是一般滋味在心头。<br>
</td> </tr>
</table>
<script language="javascript1.2">
function flashit(){
if (!document.all) return
if (myexample.style.borderColor=="yellow")myexample.style.borderColor="lime"
else myexample.style.borderColor="yellow"
}
setInterval("flashit()", 500)
</script>
</body> </html>
----------------------------------------
|