
/////////////////////////////////////////////////////////////////////

// Pop-up disclaimer
function doDisclaimer(objForm, val) {
	var disclaimer='NOTICE:\nNeither the content on the Mintz Levin web site, nor any transmissions between you and Mintz Levin through this web site, are intended to provide legal or other advice or to create an attorney-client relationship.\n\nYou should not provide any confidential information to us concerning any potential or actual legal matter you may have through this website communication. In any case, before providing any confidential information to us, you must obtain advice to do so from one or more of our lawyers.\n\nBy clicking "OK" below and thereby choosing to communicate with us through this website without prior lawyer approval as referenced above, you understand and agree that Mintz Levin will have no responsibility to keep confidential any information that you choose to provide in your communication to us. Additionally, you authorize Mintz Levin to use any of the information that you include in any way we deem necessary for any purpose at any time.\n\n---------------------------------------------------------------\n\nIRS CIRCULAR 230 NOTICE\nIn compliance with IRS requirements, we inform you that any U.S. tax advice contained in this communication is not intended or written to be used, and cannot be used, for the purpose of avoiding tax penalties or in connection with marketing or promotional materials.\n\n---------------------------------------------------------------\n\nSTATEMENT OF CONFIDENTIALITY:\nThe information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, or the person responsible for delivering the e-mail to the intended recipient, be advised you have received this message in error and that any use, dissemination, forwarding, printing, or copying is strictly prohibited. Please notify Mintz, Levin, Cohn, Ferris, Glovsky and Popeo immediately at either (617) 542-6000 or at ISDirector@Mintz.com, and destroy all copies of this message and any attachments. You will be reimbursed for reasonable costs incurred in notifying us.';
	
	if(val == "")
		{
		if(confirm(disclaimer))
			{
				objForm.submit();
			}
		else
			{
			return;
			}
		}
	else
		{
		objForm.submit();
		}
}
// Pop-up disclaimer

/////////////////////////////////////////////////////////////////////
