// JavaScript Document
function xlink(alink){
var agree = false;
agree = confirm("EXTERNAL LINK DISCLAIMER\n\nClicking on this link means that you have chosen to leave our website. While we believe that the website which you have selected to visit may be of interest to you, it is an independent web site which is not under our control. As a result, we have no responsibility for its content.");
	if ( agree )
	{
		window.open(alink)
	}
}