// JavaScript Document

function EmailDisclaimer(email)
{
	var disclaimer = "E-mail addresses of our attorneys are not provided as a means for prospective clients to contact our firm or to submit information to us.  By clicking &quot;ACCEPT,&quot; you acknowledge that Goldstein, Gellman, Melbostad & Harris, LLP, has no obligation to maintain the confidentiality of any information you submit to us unless we already have agreed to represent you or we later agree to do so.  Thus, we can represent a party in a matter adverse to you even if the information you submit to us could be used against you in that matter.";

	newWindow=window.open('','newWin','toolbar=no,width=440,height=200');
	newWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Disclaimer<\/title> <style type="text/css">.dtext {	font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal;}</style>');
	newWindow.document.write('<script language="javascript">function accept() { location.href="mailto:' + email + '"; window.close();}</script><\/head><body bgcolor="#FFFFFF">');
	newWindow.document.write('<font class="dtext">' + disclaimer + '<br><br>');
	newWindow.document.write('<table cellpadding="0" cellspacing="0" width="100%"><tr><td align="center"><a href="javascript:accept();"><img src="img/but_accept.gif" border="0" alt="Accept"></a>&nbsp;<a href="#" onClick="window.close()"><img src="img/but_decline.gif" border="0" alt="Decline"></a></td></tr></table>');
	newWindow.document.write('</font><\/body><\/html>');
	newWindow.focus();
}