// javascripts for fan.silentgarden.net/freda ~ The Freda Warrington Fanlisting


// link line removal
// removes the 'dotted lines' that can appear around links

function hideLinkLines()
{
if(document.getElementsByTagName)
{
el = document.getElementsByTagName('a')
for(i=0;i<el.length;i++)
{
el[i].onfocus = function() { this.blur() }
}
delete el
}
}
onload = hideLinkLines



// statusbar text

function statusDefault()
{
   window.defaultStatus = " ";
}
onLoad = statusDefault();
