PLACE IN HEADER TO MODIFY LINK STYLES

<STYLE> <!-- a {text-decoration:underline} a:hover {color:red} a:hover {text-decoration:none} a:hover {font-weight:bold} --> </STYLE> <BODY LINK="" ALINK="red" VLINK="blue">>

PLACE IN BODY TO PROVIDE A TIME STAMP

<SCRIPT LANGUAGE="JavaScript"> var LastModDate = new Date(document.lastModified); document.write("this page was last updated on "); document.write(LastModDate.getMonth()+1,"/"); document.write(LastModDate.getDate(),"/"); if (navigator.appVersion.indexOf("MSIE") != -1) fudge = 0; else fudge = 1900; document.write(LastModDate.getYear()+fudge); </SCRIPT>

PLACE IN HEADER TO BREAK OUT OF FRAMES AUTOMATICALLY

<SCRIPT> <!-- if (window!= top) top.location.href=location.href // --> </SCRIPT>

PLACE IN BODY TO PROVIDE A LINK TO ESCAPE FROM FRAMES

<SCRIPT> <!-- if(top.location.href!=self.location.href) document.writeln('<A HREF="'+self.location.href+'" TARGET="_top">Break the frames!</A>'); //--> </SCRIPT>

PLACE IN HEADER TO REDIRECT A WEB PAGE

<META HTTP-EQUIV="Refresh" CONTENT="6; URL=index.html">

PLACE BELOW HEADER TO MASK A WEB PAGE

<html> <head> <title>your title</title> <meta name="description" content="your description"> <meta name="keywords" content="keyword1, keyword2"> </head> <frameset rows="100%,0" border="0"> <frame src="http://your_forwarding_url" frameborder="0"> <frame frameborder="0"> </frameset>