// JavaScript Document

function getLink(exitLink)
{
	var exitPage;
	exitPage = window.open('','_blank');
	exitPage.document.write("<head><title>Untitled Document</title>");
	exitPage.document.write("<link href='assests/css/pcu_exit_disclaim.css' rel='stylesheet' type='text/css' />");
	exitPage.document.write("</head><body>");
	exitPage.document.write("<div class='wrapper'><h2>Attention</h2>");
	exitPage.document.write("<p>You are now leaving the web site of Plus Credit Union and entering a web site not operated by this financial institution. </p>");
	exitPage.document.write("<p>We are not responsible for the content of the web site. Plus Credit Union does/will not represent either you, as a member of the credit union, or the website in any transaction or agreement entered into between the above mentioned parties.</p>");
	exitPage.document.write("<p>Privacy and security policies may differ from those practiced by the credit union.</p>");
	exitPage.document.write("<div><a href='" + exitLink + "'>You are now leaving Plus Credit Union's web site</a></div>");
	exitPage.document.write("<div><a href='javascript:this.close()'>Do not leave Plus Credit and close this window.</a></div>");
	exitPage.document.write("</div></body></html>");
}