<!-- Hide

var scrtxt="don't forget!!! clicking on the syllabus reference numbers brings up the syllabus statements........ "+
"IB chemistry syllabus --->  condensed notes ----> extended notes ----> practice past paper questions";
var s9="acids and bases";
var lentxt=scrtxt.length;
var width=100;
var pos=1-width;
var x=scroll9

function scroll() {
  pos++;
  var scroller="";
  if (pos==lentxt) {
    pos=1-width;
  }
  if (pos<0) {
    for (var i=1; i<=Math.abs(pos); i++) {
      scroller=scroller+" ";}
    scroller=scroller+scrtxt.substring(0,width-i+1);
  }
  else {
    scroller=scroller+scrtxt.substring(pos,width+pos);
  }
  window.status = scroller;
  setTimeout("scroll()",100);
  }
  
  function scroll9() {
  pos++;
  var scroller="";
  if (pos==lentxt) {
    pos=1-width;
  }
  if (pos<0) {
    for (var i=1; i<=Math.abs(pos); i++) {
      scroller=scroller+" ";}
    scroller=scroller+s9.substring(0,width-i+1);
  }
  else {
    scroller=scroller+s9.substring(pos,width+pos);
  }
  window.status = scroller;
  setTimeout("scroll()",100);
  }
//-->

