<!--
var ticker_largeur = "610px"
var ticker_hauteur = "25px"
var ticker_vitesse = 1.5
var ticker_couleur_bg="#dedede"
//Pause sur événement onMousever (0=non. 1=oui)
var bool_pause_ticker=1

//Specify the marquee's content (don't delete <nobr> tag)
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var marqueecontent='<nobr><p style="margin-top: 3px;padding-bottom: 3px"><strong>Effective Business Writing (EBW) -- 19-20 May 2010</strong>: "Interaction with students was excellent.  Although an “old-timer” in [this organisation], I learned a lot on how to improve!” --  “Recommend to make this course COMPULSORY to the entire [organisation.]” --  "This course should be compulsory for all … staff irrelevant of their position and grade." - <strong>Effective Business Writing (EBW) -- 29-30 April 2010</strong>: "I am going to recommend this training to my colleagues. Everyone should follow it!" -- "All people in the bank should come and see how with few tips, (our) global communication could be improved." - <strong>Effective Business Writing (EBW) in Luxembourg -- 24-25 March 2010</strong>: "Probably the best course I [ever had] at [this company]. Very good teacher." - <strong>Effective Business Writing (EBW) in Luxembourg -- 24-25 March 2010</strong>: "The tutor has a very deep knowledge of the matter and she knows how to transmit it." - <strong>Effective Business Writing (EBW) in Luxembourg -- 24-25 March 2010</strong>: "Everybody should take this training! Absolutely...key training in business." - <strong>Effective Business Writing (EBW) in Luxembourg -- 10-11 March 2010</strong>: "Dynamic." - <strong>Effective Business Writing (EBW) in Luxembourg -- 10-11 March 2010</strong>: "Tailored to my needs. It\'s what I need for daily work." - <strong>Effective Business Writing (EBW) in Luxembourg -- 10-11 March 2010</strong>: "Can be used right away in the work environment." - <strong>Effective Business Writing (EBW) in Luxembourg -- 10-11 March 2010</strong>: "I wish I had done this course earlier." - <strong>Customized writing seminar -- 21 January 2010</strong>: "Good alternation between theory/practice. I had a feeling that time went fast, which shows that the training was pleasant." - <strong>Customized writing seminar -- 21 January 2010</strong>: "Excellent development of the training. At the end, it proves its efficiency."</p></nobr>'


////NO NEED TO EDIT BELOW THIS LINE////////////
ticker_vitesse=(document.all)? ticker_vitesse : Math.max(1, ticker_vitesse-1) //slow speed down by 1 for NS
var copyspeed=ticker_vitesse
var pausespeed=(bool_pause_ticker==0)? copyspeed: 0
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')
var actualwidth=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.left=parseInt(ticker_largeur)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.left=parseInt(ticker_largeur)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualwidth=ns_marquee.document.width
}
lefttime=setInterval("scrollmarquee()",20)
}
window.onload=populate

function scrollmarquee(){
if (iedom){
if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px"
else
cross_marquee.style.left=parseInt(ticker_largeur)+8+"px"

}
else if (document.layers){
if (ns_marquee.left>(actualwidth*(-1)+8))
ns_marquee.left-=copyspeed
else
ns_marquee.left=parseInt(ticker_largeur)+8
}
}

if (iedom||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
if (iedom){
write('<div style="position:relative;width:'+ticker_largeur+';height:'+ticker_hauteur+';overflow:hidden">')
write('<div style="position:absolute;width:'+ticker_largeur+';height:'+ticker_hauteur+';background-color:'+ticker_couleur_bg+'" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=ticker_vitesse">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+ticker_largeur+' height='+ticker_hauteur+' name="ns_marquee" bgColor='+ticker_couleur_bg+'>')
write('<layer name="ns_marquee2" left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=ticker_vitesse"></layer>')
write('</ilayer>')
}
document.write('</td></table>')
}
}
//-->