// JavaScript Document
/////////////////////////////////////////////////////////////////////

// Pop-up disclaimer
function doDisclaimer() {

	var disclaimer='PLEASE NOTE:\nThis web site presents general information about Lahive & Cockfield and is not intended as legal advice, and it should not be considered or relied upon as such. Please understand that contacting Lahive &amp; Cockfield by email or telephone will not establish an attorney-client relationship, which can only be established through completion of Lahive & Cockfield\'s new client intake protocol, including without limitation a conflicts checking process. Absent a current engagement letter with Lahive & Cockfield, any information or documents transmitted by you to Lahive & Cockfield will not be treated as confidential, secret or protected in any way. By clicking "OK", which permits you to complete the email process, you acknowledge that you understand and agree with the terms of this notice.';

	if(confirm(disclaimer)) {
		return true;
	} else {
		return false;
	}
	
}

/////////////////////////////////////////////////////////////////////