<div class='html-Content' xmlns="https://www.w3.org/1999/xhtml">
<div class='head-Content'>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Information Sharing Disclosure</title>
<script language="JavaScript" type="text/javascript">
<!--
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2008 Adobe Systems Incorporated. All rights reserved.
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
{
var version;
var axo;
var e;
// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
try {
// version will be set for 7.X or greater players
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
version = axo.GetVariable("$version");
} catch (e) {
}
if (!version)
{
try {
// version will be set for 6.X players only
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
// installed player is some revision of 6.0
// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
// so we have to be careful.
// default to the first public version
version = "WIN 6,0,21,0";
// throws if AllowScripAccess does not exist (introduced in 6.0r47)
axo.AllowScriptAccess = "always";
// safe to call for 6.0r47 or greater
version = axo.GetVariable("$version");
} catch (e) {
}
}
if (!version)
{
try {
// version will be set for 4.X or 5.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = axo.GetVariable("$version");
} catch (e) {
}
}
if (!version)
{
try {
// version will be set for 3.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = "WIN 3,0,18,0";
} catch (e) {
}
}
if (!version)
{
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version = "WIN 2,0,0,11";
} catch (e) {
version = -1;
}
}
return version;
}
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
// NS/Opera version >= 3 check for Flash plugin in plugin array
var flashVer = -1;
if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
var descArray = flashDescription.split(" ");
var tempArrayMajor = descArray[2].split(".");
var versionMajor = tempArrayMajor[0];
var versionMinor = tempArrayMajor[1];
var versionRevision = descArray[3];
if (versionRevision == "") {
versionRevision = descArray[4];
}
if (versionRevision[0] == "d") {
versionRevision = versionRevision.substring(1);
} else if (versionRevision[0] == "r") {
versionRevision = versionRevision.substring(1);
if (versionRevision.indexOf("d") > 0) {
versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
}
}
var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
}
}
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
else if ( isIE && isWin && !isOpera ) {
flashVer = ControlVersion();
}
return flashVer;
}
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
versionStr = GetSwfVer();
if (versionStr == -1 ) {
return false;
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
// Given "WIN 2,0,0,11"
tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
tempString = tempArray[1]; // "2,0,0,11"
versionArray = tempString.split(","); // ['2', '0', '0', '11']
} else {
versionArray = versionStr.split(".");
}
var versionMajor = versionArray[0];
var versionMinor = versionArray[1];
var versionRevision = versionArray[2];
// is the major.revision >= requested major.revision AND the minor version >= requested minor
if (versionMajor > parseFloat(reqMajorVer)) {
return true;
} else if (versionMajor == parseFloat(reqMajorVer)) {
if (versionMinor > parseFloat(reqMinorVer))
return true;
else if (versionMinor == parseFloat(reqMinorVer)) {
if (versionRevision >= parseFloat(reqRevision))
return true;
}
}
return false;
}
}
function AC_AddExtension(src, ext)
{
if (src.indexOf('?') != -1)
return src.replace(/\?/, ext+'?');
else
return src + ext;
}
function AC_Generateobj(objAttrs, params, embedAttrs)
{
var str = '';
if (isIE && isWin && !isOpera)
{
str += '<object ';
for (var i in objAttrs)
{
str += i + '="' + objAttrs[i] + '" ';
}
str += '>';
for (var i in params)
{
str += '<param name="' + i + '" value="' + params[i] + '" /> ';
}
str += '</object>';
}
else
{
str += '<embed ';
for (var i in embedAttrs)
{
str += i + '="' + embedAttrs[i] + '" ';
}
str += '> </embed>';
}
document.write(str);
}
function AC_FL_RunContent(){
var ret =
AC_GetArgs
( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
, "application/x-shockwave-flash"
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_SW_RunContent(){
var ret =
AC_GetArgs
( arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
, null
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
var ret = new Object();
ret.embedAttrs = new Object();
ret.params = new Object();
ret.objAttrs = new Object();
for (var i=0; i < args.length; i=i+2){
var currArg = args[i].toLowerCase();
switch (currArg){
case "classid":
break;
case "pluginspage":
ret.embedAttrs[args[i]] = args[i+1];
break;
case "src":
case "movie":
args[i+1] = AC_AddExtension(args[i+1], ext);
ret.embedAttrs["src"] = args[i+1];
ret.params[srcParamName] = args[i+1];
break;
case "onafterupdate":
case "onbeforeupdate":
case "onblur":
case "oncellchange":
case "onclick":
case "ondblclick":
case "ondrag":
case "ondragend":
case "ondragenter":
case "ondragleave":
case "ondragover":
case "ondrop":
case "onfinish":
case "onfocus":
case "onhelp":
case "onmousedown":
case "onmouseup":
case "onmouseover":
case "onmousemove":
case "onmouseout":
case "onkeypress":
case "onkeydown":
case "onkeyup":
case "onload":
case "onlosecapture":
case "onpropertychange":
case "onreadystatechange":
case "onrowsdelete":
case "onrowenter":
case "onrowexit":
case "onrowsinserted":
case "onstart":
case "onscroll":
case "onbeforeeditfocus":
case "onactivate":
case "onbeforedeactivate":
case "ondeactivate":
case "type":
case "codebase":
case "id":
ret.objAttrs[args[i]] = args[i+1];
break;
case "width":
case "height":
case "align":
case "vspace":
case "hspace":
case "class":
case "title":
case "accesskey":
case "name":
case "tabindex":
ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
break;
default:
ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
}
}
ret.objAttrs["classid"] = classid;
if (mimeType) ret.embedAttrs["type"] = mimeType;
return ret;
}
// -->
</script>
<link href="/stylesheets/statefund_styles.css" rel="stylesheet" type="text/css">
<script src="/javascript/AC_RunActiveContent.js" type="text/javascript"></script>
<meta name="keywords" content="Information Sharing Disclosure">
<meta name="description" content="Information Sharing Disclosure">
<meta name="WT.cg_n" content="About">
<meta name="WT.cg_s" content="WebsitePrivacyPolicy">
<link rel="stylesheet" type="text/css" href="/stylesheets/mobile_styles.css">
<style type="text/css">
<!--
@import url("/stylesheets/statefund_styles.css");
-->
</style>
<style type="text/css" media="handheld, only screen and (max-device-width: 480px)">
<!--
@import url("/stylesheets/mobile_styles.css");
-->
</style>
<link href="/stylesheets/statefund_styles.css" rel="stylesheet" type="text/css" media="screen and (min-width: 481px)">
</div>
<div class='body-Content' id="">
<div class="topheader"><a href="/index.asp" name="home"><img src="/images/state_fund_logo.gif" alt="state fund logo" border="0" align="left"></a>
<div class="offscreen"><img src="/images/offscreen_transparency.gif" alt="" width="250" height="20" align="center"></div>
<ul id="accessibility" class="offscreen">
<li><a href="#skipnavigation" accesskey="0">Skip past navigation</a></li>
<li><a href="#footer" accesskey="4">Skip to table of contents</a></li>
</ul>
<div class="offscreen"><img src="/images/offscreen_transparency.gif" alt="" width="250" height="20" align="center"></div>
<div class="topheaderRight">
<div class="topnav">
<div class="topnavRight"><a href="/index.asp" accesskey="5">Home</a> | <a href="/contact/ContactUs.asp" tabindex="1">Contact us</a></div>
<div class="topnavLeft"><a href="/employers/Index.asp" name="Employer">EMPLOYERS</a> | <a href="/broker/Index.asp" name="Broker">BROKERS</a> | <a href="/provider/Index.asp" name="Medical Provider">MEDICAL PROVIDERS</a> | <a href="/employees/Index.asp" name="Employee">EMPLOYEES</a> | <a href="/statecontracts/Index.asp" name="State Contracts">STATE AGENCIES</a></div>
</div>
<div class="topPhonenumber2"><a href="/CustomerSupport/Index.asp"><strong><font size="4px">Customer Support</font></strong></a><br>(888) 782-8338</div>
<div class="topMission">Established in 1914 by the state legislature, State Fund is California's most reliable provider of workers' compensation insurance and a vital asset to California businesses. State Fund supports California's entrepreneurial spirit and plays a stabilizing role in the economy by providing fairly priced workers' compensation insurance, helping California employers keep their workplaces safe, and restoring injured workers.
</div>
</div>
<br><br><br>
</div>
<div id="mainNav2">
<div id="mainNav3">
<div class="offscreen"><img src="/images/offscreen_search.gif" alt="" width="250" height="20" align="left"><br>
<br>
</div><div class="search">
<form name="search" action="https://search.scif.com/StateFundCAsearch.cgi" method="get"><input value="Search" name="query"></form>
</div><div class="offscreen"><img src="/images/offscreen_transparency.gif" alt="" width="250" height="20" align="center"><br>
</div><ul>
<li><a href='/about/About.asp' name='About'>About</a></li><li><a href='/policy/ObtainAPolicy.asp' name='Obtain a Policy'>Obtain a Policy</a></li><li><a href='/claims/ClaimsSvcs.asp' name='Claims Services'>Claims Services</a></li><li><a href='/safety/SafetyAndSeminars.asp' name='Safety & Seminars'>Safety & Seminars</a></li><li><a href='/forms/Forms.asp' name='Forms'>Forms</a></li><li><a href='/careers/Index.asp' name='Careers'>Careers</a></li>
</ul>
</div>
</div>
<a name="skipnavigation"></a>
<div class="mainArea">
<div class="subright">
</div>
<div class="subleft">
</div>
<div class="submiddle">
<div class="subright"></div><br>
<sp>
<p> </p>
<h1>State Compensation Insurance Fund Information Sharing Disclosure
</h1>
<p>This disclosure explains what State Compensation Insurance Fund (State Fund) does to keep information about you private and secure. </p>
<h2>How We Protect Your Information</h2>
<p>State Fund has established technical, administrative, and physical security measures that align with government and industry standards to protect your personal or confidential information from unauthorized access and improper use. </p>
<h2>How We Use Information We Collect</h2>
Personal or confidential information may be used by State Fund to facilitate its workers’ compensation insurance business. <p>
<h2>Disclosure of Information to Third Parties</h2>
State Fund does<strong> <u>not</u></strong> disclose<strong>, </strong>sell, trade, or otherwise transfer your personal or confidential information or general information to third parties for their marketing purposes.</p>
<p>State Fund may collect or distribute your email address to third parties to assist us in our marketing efforts.</p>
<p>In the course of our business relationship with you, we collect information about you from various sources necessary to provide our workers’ compensation insurance services and products, offer safety information, and operate our business. </p>
<p>State Fund may provide personal or confidential information to third parties when required by law or regulation. State Fund may enter into contracts with third parties related to the transaction of its workers’ compensation business which may require the transfer of your personal or confidential information.</p>
<p>State Fund is not subject to California Consumer Privacy Act. </p>
<p>State Fund is subject to the California Public Records Act.</p>
<h2>Types of Information We Collect</h2>
<p> In the normal course of business, we collect:</p>
<ul>
<li>Information requested on applications for insurance, processing claims, underwriting, audit, and other forms (such as name, address, and personal and financial information);</li>
</ul>
<ul>
<li>Information about your transactions with us and with others (such as policy coverage, premiums, and payment history);</li>
</ul>
<ul>
<li>Information we receive from credit bureaus (such as credit report and claims histories); and </li>
</ul>
<ul>
<li>Information gathered from our websites, blogs and our social media sites about the nature and extent of your use, such as: information volunteered by you through our online forms, email initiated by you to State Fund, site visit data, or information collection devices (“cookies”).<sup>1</sup></li>
</ul>
<p>State Fund also uses third party analytics products that collect and analyze information about your use of our various webpages, blogs and other electronic presences.<strong></strong></p>
<h2>Definitions of Terms</h2>
<p>Personal or confidential information includes, but is not limited to:</p>
<ol type="1">
<em>
<li style="font-weight: bold">Confidential information</li><br>
<p>Information about State Fund, a State Fund policyholder, or claimant, or a third party of such nature that it has independent economic value from not being generally known to the public. State Fund policyholder “confidential information” includes, but is not limited to, wage or salary information; trade secrets, financial statements, credit reports, and any other information that the insured has lawfully designated proprietary or trade secret.</p>
<li style="font-weight: bold">Personal Information </li>
<br>
<strong>For any individual - </strong>Information, which alone (e.g. no reference to another source is needed), or in combination with an individual’s name if lost, compromised, or disclosed without authorization, could result in substantial harm, embarrassment, inconvenience, or unfairness to an individual.
<p><strong><br>
For Policyholders</strong><strong> - </strong>Any individually identifiable information gathered in connection with an insurance transaction from which judgments can be made about an individual’s character, habits, avocations, finances, occupation, general reputation, credit information or any other personal characteristics. </p></em></ol>
<h2>How to Contact Our Privacy Office</h2>
<p>If you have questions about State Fund’s <em>Information Sharing Disclosure </em>or you believe your privacy rights have been violated, contact the State Fund Privacy Office by phone toll free at: (888) 724-3237 or by e-mail to <a href="mailto:Privacyoffice@scif.com">Privacyoffice@scif.com</a>.</p>
<p><em><sup>1</sup> Cookies – Cookies are small files supplied by the web server and stored by the web browser software on your computer when you access State Fund’s website. Cookies allow State Fund to monitor traffic patterns and improve the website so you can use our website systems more efficiently.</em>
</p>
</sp></div>
</div>
</div>
</div>
<a name="footer"></a>
<div class="footerArea">
<div class="footerbg">
<ul>
<li>
<div class="footerSpacer"></div>
<a href="/broker/Index.asp">Brokers</a>
<br>
<a href="/employers/Index.asp">Employers</a>
<br>
<a href="/employees/Index.asp">Employees</a>
<br>
<a href="/fraud/Fraud.asp">Fraud</a>
<br>
<br>
</li>
<li>
<div class="footerSpacer"></div>
<a href="/provider/Index.asp">Medical Providers</a>
<br>
<a href="/statecontracts/Index.asp">State Agencies</a>
<br>
<a href="/policy/ObtainAPolicy.asp">Obtain a Policy</a>
<br>
<a href="/about/VendorGuide.asp">Vendor Guide</a>
<br>
<br>
</li>
<li>
<div class="footerSpacer"></div>
<a href="/claims/ClaimsSvcs.asp">Claims Services</a>
<br>
<a href="/safety/SafetyAndSeminars.asp">Safety & Seminars</a>
<br>
<a href="/forms/Forms.asp">Forms</a>
<br>
<a href="/about/Community.asp">Community</a>
<br>
<br>
</li>
<li>
<div class="footerSpacer"></div>
<a href="/about/About.asp">About Us</a>
<br>
<a href="/about/history/index.html">History</a>
<br>
<a href="/contact/ContactUs.asp">Contact Us</a>
<br>
<a href="/CustomerSupport/Index.asp">Customer Support</a>
<br>
<br>
</li>
</ul>
<div style="clear:left"></div>
</div>
</div>
<div class="footerArea" align="center">Copyright © 2000-2023 State Compensation Insurance Fund<br>
<a href="/about/TermsOfUse.asp">Website Terms of Use</a>, <a href="/about/PrivacyPolicy.asp">Website Privacy Policy</a> and <a href="/about/SharingDisclosure.asp" target="_blank">Information Sharing Disclosure</a></div>