

//Alert message once script- By JavaScript Kit
//Credit notice must stay intact for use
//Visit http://javascriptkit.com for this script

//specify message to alert
var alertmessage="Welcome to the Investor Relations portion of our website. This website does not constitute and should not be construed as an offer to sell or a solicitation of an offer to buy securities in any jurisdiction. \n  \nThe material on this website is not intended to modify, qualify, supplement or update information disclosed under corporate and securities legislation of any jurisdiction related to Calfrac and should not be used for the purpose of making investment decisions concerning Calfrac's securities. \n \nBy proceeding to the information and web pages contained herein you are accepting the terms of the Legal Notice contained on our site, which provides, among other things, that Calfrac shall not be liable for any claims or damages arising from the use of this website. \n \nYou may review the contents of the Legal Notice in its entirety by clicking on the legal link on the bottom of any page on this website. \n \n Information posted on this website is accurate at the time of posting, but may be superseded by subsequent events.  Calfrac undertakes no obligation to update historical news releases posted on this website. \n \n Calfrac undertakes no responsibility for the accuracy or completeness of the information posted on external websites."

///No editing required beyond here/////

//Alert only once per browser session (0=no, 1=yes)
var once_per_session=1


function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function alertornot(){
if (get_cookie('alerted')==''){
loadalert()
document.cookie="alerted=yes"
}
}

function loadalert(){
alert(alertmessage)
}

if (once_per_session==0)
loadalert()
else
alertornot()
