function mOver() {
self.status='Click here now to visit this site'; return true;
}
function mOut() {
self.status=''; return true;
}

/* automatically set all links to use link frameset */
d = document.links; f = "file:"; j = "javascript:"; m = "mailto:"; t = "extLinks";
for (i = 0; i < (d.length); i++)
if (d[i].protocol != f && d[i].protocol != j && d[i].protocol != m && d[i].hostname != document.domain) {
	d[i].title = "External link to " + d[i].href;
	d[i].onmouseover = mOver
	d[i].onmouseout = mOut
	d[i].href = fileLoc + 'lnkframe.htm?' + escape(d[i].href);
	d[i].target = t;
}
