// JavaScript Document
function invest()
{
var r=confirm("You are now leaving Florida Gulf Bank's website. Please be aware that Investment Products are not FDIC insured, are not guaranteed by any Bank, and may lose value.");
if (r==true)
  {
  window.open("http://www.floridagulfinvestment.com");
  }
else
  { top.location="#";
  }
}
