
    // Dynamic Linked Path Generator
    // by Kevin Lynn Brown
    // ©1998 All rights reserved
    // Myers Internet Services
	
	
var thetitle=document.title
	smut="";
cmp="Re: www. ' - , * $ ! . ~ ` # % ^ & * ( ) + "
+"{ } [ ] | \ ";
txt=thetitle;
tstx="";
for (var i=0;i<16;i++){
pos=cmp.indexOf(" ");
wrd=cmp.substring(0,pos);
wrdl=wrd.length
cmp=cmp.substring(pos+1,cmp.length);
while (txt.indexOf(wrd)>-1){
pos=txt.indexOf(wrd);
txt=txt.substring(0,pos)+smut.substring(0,wrdl)
+txt.substring((pos+wrdl),txt.length);
   }
}
 thetitle=txt;
document.write("<input type='text' name='keyword' value='"); 
document.write(thetitle);
document.write("' size='35' class='searchBox'>");

