function ShowPopupWarning(warningType)
{
	if (warningType == 1)
	{
		message = "The Corporate Overview and other investor related information is maintained by SNL Financial, LLC. SNL is not an affiliate of ";
		message += "Columbia State Bank and has contracted with Columbia State Bank to operate the Corporate Overview and other investor related "; 
		message += "information on its behalf. Information contained in these sections are not prepared by Columbia State Bank but rather compiled ";
		message += "by SNL from other sources. For information about SNL and its operation of this site, please consult the SNL link at the bottom ";
		message += "of the page.";
		return confirm(message);
	}
	else if (warningType == 2)
	{
		message = "You are now leaving the Columbia Bank website. Click OK to continue or click cancel to remain at our site.  Columbia State Bank ";
		message += "does not control the content of or approve any website that is linked through this browser. Search results are not filtered or ";
		message += "screened by the bank or any of its agents, representatives or service providers. Users who search the Internet using this browser ";
		message += "do so at their own risk and are responsible for the results.";
		return confirm(message);
	}
	else if (warningType == 3)
	{
		message = "You are now leaving the Columbia Bank website. Click OK to continue or click cancel to remain at our site. Columbia State Bank ";
		message += "does not control the content of or approve any website that is linked through this browser. Search results are not filtered or ";
		message += "screened by the bank or any of its agents, representatives or service providers. Users who search the Internet using this browser ";
		message += "do so at their own risk and are responsible for the results.\n\n";
		message += "Securities and insurance products are offered by PRIMEVEST Financial Services, Inc., an independent, registered broker/dealer, registered investment adviser,";
		message += " and licensed insurance agency. Member FINRA/SIPC.  CB Financial Services is a marketing name for PRIMEVEST ";
		message += "\n\n Investment products are: *Not FDIC insured * No bank guarantee * Not a deposit\n * Not insured by any federal government agency * May lose value ";
		return confirm(message);
	}
	else
	{
		return true;
	}
}