JavaScript to find the latest CFS news in the Federal Register (fwd)
I just wrote a script to find the latest CFS news in the U.S. Federal
Register since january 1 for the present year. If you maintain a web
site, you might like to add the javascript below to a page.
You might need to adapt the hypertext section to fit the format of
your web page. See also,
http://listserv.nodak.edu/cgi-bin/w..co-cure&P=R2835
<html>
<body>
<script language=javascript>
// Written by Marc Fluks <fluks@dds.nl>, Version 06/28/2006.
// Find present year.
var present = new Date()
var time = present.getFullYear()
// Begin hypertext.
document.write("<ul><font color=black>")
document.write("<li><a href=http://frwebgate.access.gpo.gov/cgi-bin/multidb.
cgi?WAISdbName="+time+"_register+Federal+Register&WAISqueryRule=$WAISquerySt
ring&WAIStemplate=multidb_results.html&WrapperTemplate=fr_wrapper.html&WAISq
ueryString=%28chronic+AN
D+fatigue+AND+syndrome%29+AND+%28date%3E01/01/"+time+"%29&WAISmaxHits=200>Fe
deral Register</a> (since January 1, "+time+")")
document.write("</font></ul>")
// End hypertext.
</script>
</body>
</html>
|