function confirmLeave(loc) { 
	var answer = confirm('You are now leaving and going to a link on a non-federal Web site. The Defense Department does not endorse this organization or the information, products or services contained therein');
	if (answer) { 
		window.location = loc; 
	}
}

function confirmLeave2(loc) { 
	var answer = confirm('Disclaimer: The Department of Defense does not endorse this organization or the information, products or services contained therein. This site is intended solely to communicate citizen support to the men and women serving in our Armed Forces and their families.');
	if (answer) { 
		window.location = loc; 
	}
}