//scroller width

var swidth=100;



//scroller height

var sheight=200;



//background color

var sbcolor='#ffffff';



//scroller's speed

var sspeed=2;



var msg=''




//Your messages go below:

msg +=
      '<ul><li>December 4, 2009</li>'+

      '<li>QCF compatible: automated credit calculator</li>'+

      '<li>The SkilSure e-portfolio has been enhanced to be more QCF compatible. <a href="120409.html">Click for more info...</a></li>'+

      '<li></li></ul>'+
      '<ul><li>April 2, 2009</li>'+

      '<li>Powerful Tools for IVs and Assessors.</li>'+

      '<li>The SkilSure e-portfolio is now enhanced with powerful tools and management information for Internal and External Verifiers and Assessors. <a href="040209.html">Click for more info...</a></li>'+

      '<li></li></ul>'+
      '<ul><li>August 27, 2008</li>'+

      '<li>Handheld, wireless functionality for SkilSure e-portfolio solution.</li>'+

      '<li>The SkilSure e-portfolio is now PDA compatible. <a href="082708.html">Click for more info...</a></li>'+

      '<li></li></ul>'+
      '<ul><li>April 2, 2008</li>'+

      '<li>Job Knowledge and Unit Tests integrated with SkilSureŽ e-portfolio solution.</li>'+

      '<li>Today SkilSure Limited announced the impending release of a testing module for its City and Guilds endorsed NVQ e-portfolio solution.<a href="040208.html">Click for more info...</a></li>'+

      '<li></li></ul>'+
      '<ul><li>January 10, 2008</li>'+

      '<li>Customized e-portfolio solution for Domestic Energy Assessor VRQ.</li>'+

      '<li>This week Claymore Inc. rolled out to British Gas a customized VRQ e-portfolio solution. <a href="011008.html">Click for more info...</a></li>'+

      '<li></li></ul>'+

      '<ul><li>November 19, 2007</li>'+

      '<li>e- Portfolio prices cut by 50%.</li>'+

      '<li> This week SkilSure Limited announced a significant reduction in the price of its premium City & Guilds endorsed, e-portfolio solution.<a href="111907.html">Click for more info...</a></li>'+

      '<li></li></ul>'+

      '<ul><li>February 27, 2007</li>'+

      '<li>SkilSure<sup>&reg;</sup> endorsed by City & Guilds</li>'+

      '<li>City & Guilds has endorsed the S/NVQ e-portfolio solution SkilSure<sup>&reg;</sup>.<a href="022707.html">Click for more info...</a></li>'+

      '<li></li></ul>'+


      '<ul><li>December 14, 2006</li>'+

      '<li>SkilSure Ltd develops on-line S/NVQ e-portfolio solution</li>'+

      '<li>SkilSure Ltd is pleased to announce that working closely with a number of major awarding bodies we have developed a comprehensive, fully featured on-line S/NVQ e-portfolio solution. <a href="121406.html">Click for more info...</a></li>'+

      '<li> </li></ul>'+


      '<ul><li>April 07, 2006</li>'+

      '<li>SkilSure Limited wins the New Business Award.</li>'+

      '<li>SkilSure Ltd was awarded the New Business Award at the Leicestershire Business Awards 2006.<a href="040806.html"> Click for more info...</a> </li>'+

      '<li> </li></ul>'+



      '<ul><li>January 19, 2006</li>'+

      '<li>SkilSure Ltd. is one of the three finalists</li>'+

      '<li>SkilSure Limited is very pleased to have been confirmed as one of the three finalists in the UK Leicestershire Business Awards in the New Business Category.<a href="011906.html"> Click for more info...</a> </li>'+

      '<li> </li></ul>'+



      '';



//End of your messages




// Begin the ticker code

var resumesspeed=sspeed



function start() {

  if (document.all) iemarquee(ticker);

  else if (document.getElementById)

       ns6marquee(document.getElementById('ticker'));

}



function iemarquee(whichdiv){

  iediv=eval(whichdiv)

  sheight += 50;

  iediv.style.pixelTop=sheight

  iediv.innerHTML=msg

  sizeup=iediv.offsetHeight

  ieslide()

}



function ieslide(){

  if (iediv.style.pixelTop>=sizeup*(-1)){

    iediv.style.pixelTop-=sspeed

    setTimeout("ieslide()",100)

  }else{

    iediv.style.pixelTop=sheight

    ieslide()

  }

}



function ns6marquee(whichdiv){

  ns6div=eval(whichdiv)

  sheight += 50;

  ns6div.style.top=sheight + "px";

  ns6div.innerHTML=msg

  sizeup=ns6div.offsetHeight

  ns6slide()

}



function ns6slide(){

  if (parseInt(ns6div.style.top)>=sizeup*(-1)){

     theTop = parseInt(ns6div.style.top)-sspeed

     ns6div.style.top = theTop + "px";

     setTimeout("ns6slide()",100)

  }else {

     ns6div.style.top = sheight + "px";

     ns6slide()

  }

}


