<style type="text/css">
.noPrintSFCA .ShowMe {
visibility:visible;
}
</style>
<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>State Compensation Insurance Fund Website Terms Of Use</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="State Compensation Insurance Fund Website Terms Of Use">
<meta name="description" content="State Compensation Insurance Fund Website Terms Of Use">
<meta name="WT.cg_n" content="About">
<meta name="WT.cg_s" content="TermsOfUse">
<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>
<h1>State Compensation Insurance Fund Website Terms Of Use</h1>
<ol>
<li style="font-weight: bold">Introduction</li>
<br>
<p>This notice sets forth the terms of use of statefundca.com. By using statefundca.com and all of its associated web pages, you accept the following terms and conditions. If you do not agree with any part of State Compensation Insurance Fund’s (State Fund) <em>Website Terms of Use or </em><a href="/about/PrivacyPolicy.asp"><strong><em>Website Privacy Policy</em></strong></a>, you should not attempt an online transaction. State Fund continues to provide core services by telephone, facsimile, and US mail. State Fund reserves the right to modify its <em>Website Terms of Use</em> at any time. </p>
<li style="font-weight: bold">Scope</li><br>
<p>This notice applies to all web pages and all materials, including images, text, illustrations, designs, icons, photographs, programs, video clips, and written and other materials that are part of statefundca.com (collectively, the “contents”) which are accessible via the Internet. This includes those areas and contents that are accessed using a unique user identification and password combination unless any separate user agreement exists between you and State Fund, in which case this agreement applies only to the extent that it is not in conflict with the user agreement. This Legal notice does not authorize the access or use of materials for which a unique user identification and password are required.</p>
<li style="font-weight: bold">Personal Security Code Registration (Applicable only to pages requiring registration, user IDs and Passwords)</li><br>
<p>In order to process your online transactions, you must create a user account. You will establish a login name (User ID and password) which you will gain to access to the system. Security measures, such as confirmation of your e-mail address and account verification procedures, are in place to ensure proper user authentication and access. Use of your account in an unauthorized manner or unauthorized use of your account or User ID is strictly prohibited. In accessing the online transaction section of State Fund’s website and utilizing your User ID you agree:</p>
<ol start="1" type="a">
<li>You will keep your User ID confidential and you will notify State Fund immediately, and cooperate with State Fund, if you believe someone else has obtained your User ID or if any unauthorized access to your State Fund account has occurred or may occur. </li>
<li>You will not attempt to gain access to your account by any means other than as set forth herein, and will not manipulate the feature of any software to provide access not intended by this agreement or alter applications or forms provided by State Fund. </li>
<li>We are entitled to act on instructions received under your User ID.</li>
<li>We are not liable for any unauthorized access to your personal information that is not the direct result of gross negligence or intentional misconduct on the part of State Fund.</li>
<li>We may block access to your account without prior notice if we believe your User ID is being used by someone other than you, if any unauthorized access to your personal information has occurred or may occur or for other reasons solely within the discretion of State Fund. </li>
<li>We reserve the right to deny access for reasons of site maintenance, security, auditing, updating and as otherwise required, at its sole discretion at such times as it shall choose without prior notice.<br>
<br>
</li>
</ol>
<li style="font-weight: bold">Copyrights and Trademarks, and other Intellectual Property Rights</li><br>
<p>Unless otherwise noted, all contents that are part of statefundca.com are the copyrights, trademarks, trade dress, and/or other intellectual property owned, controlled, or licensed by State Fund or by third parties who have licensed their materials to State Fund. All such properties are protected by U.S. and international copyright laws. The compilation (meaning the collection, arrangement, and assembly) of all content on statefundca.com is the exclusive property of State Fund and is also protected by U.S. and international copyright laws.<br clear="all">
</p>
<p> Except as set out in the next paragraph, State Fund expressly reserves all intellectual property rights in all text, program, products, processes, technology, and contents that appear on statefundca.com. Access to statefundca.com does not confer and shall not be considered as conferring upon anyone any license under any of State Fund’s or any third party’s intellectual property rights. The State Compensation Insurance Fund, State Fund, and statefundca.com names and logos and all related product and service names, design marks, and slogans are the trademarks or service marks of State Fund. All other marks are the property of their respective owners. No trademark or service mark license is granted in connection with the materials contained on statefundca.com. Access to statefundca.com does not authorize anyone to use any name, logo, or mark in any manner. References on statefundca.com to any names, marks, products or service of third parties or hypertext links to third party sites or information are provided solely as a convenience to you and do not in any way constitute or imply State Fund’s endorsement, sponsorship, or recommendation of the third party, information, product or service. State Fund is not responsible for the content of any third party sites and does not make any representations or warranties regarding the content or accuracy of the material on such sites. If you decide to link to any third party websites, you do so entirely at your own risk.</p>
<p> Except as otherwise specified on any individual web page, you may download or copy the contents for your internal or personal use only. If there is any conflict regarding the terms of use between this notice and any express notice on any contents, only to the extent necessary to resolve the conflict, the terms set forth in the contents shall control. Use of the contents for pecuniary gain is strictly prohibited. No right, title or interest in any downloaded materials or software is transferred to you as a result of any such downloading or copying. You may not reproduce (except as noted above), publish, transmit, distribute, display, modify (including removing any text or marks that indicate ownership or origin) create derivative works from, sell or participate in any sale of or exploit in any way, in whole or in part, any of the contents, the site, or any related software. All software used on this site is the property of State Fund and protected by U.S. and international copyright laws. The content and software on this site may be used only as a resource. Any other use, including the reproduction, modification, distribution, transmission, republication, display or performance, of the content on this site is strictly prohibited without the express written permission of State Fund. Requests for permission to use any contents may be made through State Fund’s “Contact Us” page.</p>
<p> You agree to defend, indemnify, and hold State Fund harmless from and against any and all claims, damages, costs and expenses, including attorneys’ fees, arising from or related to your use of the Site.</p>
<p> This site is provided by State Fund on an “as is” and “as available” basis. State Fund makes no representations or warranties of any kind, express or implied, as to the operation of the site or the information, content, materials, or products featured on this site.
</p>
<li style="font-weight: bold">Limitation of Liability</li><br>
<p>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL OR EQUITABLE THEORY, WHETHER IN TORT, CONTRACT, STRICT LIABILITY OR OTHERWISE, SHALL STATE FUND OR ANY OF ITS EMPLOYEES, DIRECTORS, OFFICERS, AGENTS OR VENDORS BE LIABLE TO YOU OR TO ANY OTHER PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL LOSSES OR DAMAGES OF ANY NATURE ARISING OUT OF OR IN CONNECTION WITH THE USE OF OR INABILITY TO USE THE statefundca.com WEBSITE, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, LOSS OF DATA, WORK STOPPAGE, ACCURACY OF RESULTS, OR COMPUTER FAILURE OR MALFUNCTION, EVEN IF AN AUTHORIZED REPRESENTATIVE OF STATE FUND HAS BEEN ADVISED OF OR ANY DAMAGES IN EXCESS OF THE FEES PAID BY YOU IN CONNECTION WITH YOUR USE OF THE SITE DURING THE SIX MONTH PERIOD PRECEDING THE DATE ON WHICH THE CLAIM AROSE.
<li>Some State Fund web pages may allow for the posting of questions or comments. State Fund reserves the right to alter or delete any postings to its webpages for any reason. Such webpages are not public forums.<br>
<br>
</li>
<li>We have YouTube videos on our site, which are governed by Google/YouTube’s Terms of Service, which you can find here <a href="https://www.youtube.com/t/terms">https://www.youtube.com/t/terms</a>.</li>
</ol>
</sp>
</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>
</div>
</div>