function showLinkDisclosure(earl,name) {
	var dwin = window.open("", '', 'scrollbars=yes,menubar=no,resizable=1,copyhistory=1,width=550,height=350');
	dwin.document.write(getDisclosure(name,earl));
	dwin.document.close();
}

function getDisclosure(sitename,siteurl) {

	var header = "<html>\n<head>\n<title>Disclosure</title>\n";
	header = header + "<script language=\"javascript\" src=\"/config/html/en/js/functions.js\" type=\"text/javascript\"></script>\n";
	header = header + "<link rel=\"stylesheet\" href=\"/config/html/en/theme/trident/en/theme.css\" type=\"text/css\" />\n";
	header = header + "<link rel=\"stylesheet\" href=\"/config/html/en/theme/trident/en/content.css\" type=\"text/css\" />\n";
	header = header + "<style type=\"text/css\">  body { background-image: none; }";
	header = header + "div.textblock1 { width: 95%; top: 0; left: 0; } </style>\n</head>";
	
	var body = "<div class=\"textblock1\">\n<div class=\"textblock2\">\n";
	body = body + "<table width=\"500\" border=\"0\">\n";
	body = body + "<tr>\n";
	body = body + "<td><img src=\"/fnb/images/brand/fnbologo.gif\" width=\"257\" height=\"58\"></td>\n";
	body = body + "</tr>\n";
	body = body + "<tr>\n";
	body = body + "<td bgcolor=\"117356\"><font color=\"ffffff\" align=\"top\"><strong>&nbsp; &nbsp;You are now leaving First National Bank Omaha's web site.</strong></font><img src=\"/common/html/en/site/assets/images/space.gif\" width=\"10\" height=\"30\"><br />&nbsp;</td>\n";
	body = body + "</tr>\n";
	body = body + "</table>\n";
	
	body = body + "<table width=\"500\" border=\"0\">\n";
	body = body + "<tr>\n";
	body = body + "<td width=\"2%\">&nbsp;</td>\n";
	body = body + "<td width=\"498\">Any products \n";
	body = body + "and services accessed through this link are not provided, endorsed \n";
	body = body + "or guaranteed by First National Bank Omaha. " + sitename + " may have a privacy \n";
	body = body + "policy that is different than First National Bank Omaha's. Please review \n";
	body = body + sitename + "'s privacy policy. \n";
	body = body + "<p>Thank you for visiting firstnational.com.  For your convenience, First National Bank Omaha's web site will remain active.</p>\n";
	body = body + "<p>&nbsp;</p></td>\n";
	body = body + "</tr>\n";
	body = body + "<tr>\n";
	body = body + "<td width=\"2%\">&nbsp;</td>\n";
	body = body + "<td width=\"98%\">\n";
	body = body + "<table align=\"center\" width=\"15%\" border=\"0\">\n";
	body = body + "<tr> \n";
	body = body + "<td width=\"50%\"><input type=\"submit\" value=\"Continue\" onclick=\"window.open('" + siteurl + "','disclosurepop');window.close();return false;\"></td>\n";
	body = body + "<td><input type=\"button\" name=\"cancel\" value=\"Cancel\" onclick=\"window.close();return false;\"></td>\n";
	body = body + "</tr>\n";
	body = body + "</table>\n";
	body = body + "</td>\n";
	body = body + "</tr>\n";
	body = body + "</table>\n";
	body = body + "</form>\n";
	body = body + "<p>&nbsp;</p>\n";
	body = body + "</div>\n</div>\n";
	return header + "<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n" + body + "</body></html>";
}

