// JavaScript Document

function show_disclaimer()
{
	var disclaimer = '\n' + "You are about to visit a website which is not provided or maintained by the County of Orange." + '\n\n' + "The policies that apply to the County of Orange Official Web Portal may not be the same as the terms of use for other web sites. The County of Orange cannot attest to the accuracy of the information provided by the linked websites. Any link to an external website is not intended as an endorsement of that external website, any product or service offered or referenced to or any views that might be expressed or referenced therein.";	


	var name=confirm(disclaimer);
	if (name==true)
		return true;
	else
		return false;

}
