var fileLoc = "/extlnk/";

function mOver() {
self.status='Click here now to visit this site'; return true;
}
function mOut() {
self.status=''; return true;
}
function mClick(){
		var answer = confirm("EXTERNAL LINK NOTICE!\n\nThis link point to a site outside of the Newfoundland's Grand Banks Genealogy Site!\n\nLinks to other websites are made for the convenience of the user. It is the user's responsibility to make his/her own decision about the relevance or accuracy, currency and reliability of information found on those sites.\n\nNewfoundland's Grand Banks disclaims any liability for any damage resulting from using this site")
	if (answer){
		return true;
	}
	else{
		return false;
	}
}


/* 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].hostname != 'www.addtoany.com' && d[i].hostname != 'static.addtoany.com' && d[i].className != 'a2a_i' && d[i].className != 'a2a_sss' && d[i].className != 'a2a_i a2a_sss') {

d[i].title = "External link to " + d[i].href;
	d[i].onmouseover = mOver
	d[i].onmouseout = mOut
	d[i].onclick = mClick
	d[i].href = fileLoc + 'lnkframe.htm?' + escape(d[i].href);
d[i].target = t;
}