// JavaScript source file for Link Disclaimer
// From IRM Bulleting 99-2 'External Link Policy for Internet/Intranet Web Sites'

function showDisclaimer(){

var msg = "The hypertext links or pointers below contain information created and maintained\nby other public and private organizations. These links and pointers are provided\rfor the user's convenience.\n\nThe Federal Public Defender, District of Connecticut does not control or guarantee\nthe accuracy, relevance, timeliness, or completeness of this outside information.\n\nFurther, the inclusion of links or pointers to particular items in hypertext is not\nintended to reflect their importance, nor is it  intended to endorse any views\nexpressed, or products or services offered, on these outside sites, or organizations\nsponsoring the sites.";

alert(msg);
}

function showLinkDisclaimer(){

var msg = "If you select this link, you will be leaving the web page of the Federal Public\nDefender, District of Connecticut. The hypertext links or pointers below\ncontain information created and maintained by other public and private\norganizations. These links and pointers are provided for the user's convenience.\n\nThe Federal Public Defender, District of Connecticut does not control or guarantee\nthe accuracy, relevance, timeliness, or completeness of this outside information.";

var isOK = confirm(msg);
if(isOK){
	return true;
}else{
	return false;
	}
}

