function exitSite(url) {
if (confirm('You are leaving the CenterBank web site. We are not responsible for the content, accuracy, or opinions expressed in such Web sites, and such Web sites are not investigated, monitored, or checked for accuracy or completeness by us. Inclusion of any linked Web sites does not imply approval or endorsement of the linked Web site by us. If you decide to leave our site and access third party sites, you do so at your own risk. To remain at our site, click cancel. To leave our site for the link you selected, click ok. Thank you for visiting our site.')) {
        window.location=url;
        }
}

function emailPop(){

	//page variables
	var page_bgcolor="#0033CC";
	var border_color="#0066FF";
	var table_bgcolor="#FFFFFF";

	//content creation
	var content=new Array();
	var index = 0;
	content[index++]='<html>';
	content[index++]='<head>';
	content[index++]='<title>Disclaimer Notice</title>';
	content[index++]='<style type="text/css">p {font-family: Arial, Helvetica, sans-serif;font-size: 12px;font-style: normal;line-height: 14px;font-weight: normal;color: #000000;}</style>';
	content[index++]='</head>';
	content[index++]='<body bgcolor="' + page_bgcolor + '" onblur="self.focus();">';
	content[index++]='<table bgcolor="' + border_color + '" align="center" width="400" cellspacing="2" cellpadding="0" border="0">';
	content[index++]='	<tr>';
	content[index++]='	    <td>';
	content[index++]='		<table bgcolor="' + table_bgcolor +'" align="center" width="100%" cellspacing="1" cellpadding="10" border="0">';
	content[index++]='			<tr>';
	content[index++]='	    		<td>';
	content[index++]='				 <p>Please do not send account numbers, social security numbers or any other personal information through this email.  Emails are not secure transmissions.  If you have questions regarding existing CenterBank account(s), please contact our customer service department at 904-348-3100.  Thank you.</p>';
	content[index++]='				<p align="center"><a href="javascript:self.close()">Close</a></p>';
	content[index++]='				</td>';
	content[index++]='			</tr>';
	content[index++]='		</table>';
	content[index++]='		</td>';
	content[index++]='	</tr>';
	content[index++]='</table>';
	content[index++]='</body>';
	content[index++]='</html>';

	//actual centering popup code
	var pWidth = ((parseInt(screen.width) - 420) / 2); 
	var pHeight = ((parseInt(screen.height) - 200) / 2);
    newwin = window.open("","newwin", "width=420,height=200,left="+pWidth+",top="+pHeight+", scrollbars=0");
 	newwin.document.open('text/html','replace');
	newwin.document.write(content.join(""));
	newwin.document.close();
	return;

}

