/*
Display disclaimer message then redirect to URL parameter passed in
once the user clicks okay.
*/
function disclaimer(url)
{
	alert(
	      'You are now leaving\n\nthe Office of Superintendent of Public Instruction web ' +
	      ' site.\n\nContent of offsite pages may change and links to additional sites may ' +
	      'appear without OSPI\'s knowledge. OSPI does not endorse or warrant any of the ' +
	      'links provided; or guarantee the accuracy,appropriateness, completeness, usefulness, ' +
	      'or adequacy of any resources, information, product, or process available at or from ' +
	      'these sites. OSPI is not responsible for the content of any off-site pages or any ' +
	      'other sites linked from offsite pages.'
	     )
	window.open(url)
}

