var memorywidth="156px" // width
var memoryheight="100px" // height
var memorybgcolor="#ffffff" // background
var memorypadding="2px" //padding applied to the scroller. 0 for non.
var borderCSS="border: 0px solid #ffffff;" //Border CSS, applied to scroller to give border.
var memoryspeed=1// speed (larger is faster 1-10)
var pauseit=0 //Pause  onMousever (0=no. 1=yes)?
var persistlastviewedmsg=1 //should  position persist after users navigate away (1=yes, 0=no)?
var persistmsgbehavior="onload" //set to "onload" or "onclick".
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
var memorycontent="<p class=tabb>"
memorycontent = memorycontent + "Accenture<br>Adobe<br>ABN Amro<br>AC Nielsen<br>Amey plc<br>AON<br>ARC international<br>ARM<br>Atkins Global plc<br>AT&T Government Solutions<br>Avid<br>AXA<br>BAE Systems<br>BBC<br>Beiersdorf<br>Boeing<br>BP<br>Brit Insurance<br>British Airports Authority (BAA)<br>British Computer Society<br>BT<br>CAE plc<br>Cambridge Medical Research Council<br>Canon<br>Carphone Warehouse<br>Charter plc<br>Comverse Technology Inc.<br>Dermalogica<br>DMG World Media<br>Drax Power<br>EADS<br>EDS<br>Elopak<br>EMI<br>Foreign and Commonwealth Office<br>Framestore<br>Fujitsu Siemens<br>GAM<br>GE Healthcare<br>General Dynamics<br>General Motors<br>Google<br>HarperCollins Publishing<br>Harley Medical Group<br>Harrods<br>Hertz Europe<br>Hewlett Packard<br>HIFX<br>Honda Formula One Racing Team<br>Hughes Network Systems<br>Innocent Drinks<br>ITV<br>J P Morgan<br>J Walter Thompson<br>KDD<br>Keep America Beautiful<br>Kingfisher plc<br>Kleinwort Benson<br>Land Rover<br>Le Creuset<br>Lockheed Martin<br>Logica CMG<br>Lombard Assurance<br>L&rsquo;Or&eacute;al<br>Maersk<br>Microsoft<br>Missile Defence Agency<br>Mizuho Bank<br>Morgan Stanley<br>Motorola<br>NASA<br>NATO<br>Neutrogena<br>Northern Ireland Department of Finance<br>Northrop Grumman<br>Ogilvy<br>Orange<br>Osram<br>Pixar Animation<br>PriceWaterhouseCooper<br>Qualitas<br>Rank Media<br>Red Bull Formula One Racing Team<br>Rociaille InHealth<br>Rolls Royce Aerospace<br>Royal College of Physicians and Surgeons<br>Sanderson Wetherall<br>Sandia National Laboratory<br>SCOR Global<br>Scotland Yard<br>SERCO Defence and Aerospace<br>Shell<br>Siemens AG<br>Springer Science and Business Media<br>Steria<br>Symbol Technologies<br>Tesco<br>Tommy Hilfiger<br>Tomy<br>Towergate Partnership<br>UK Local Government Councils<br>UK Ministry of Defence<br>UK National Air Traffic Control<br>UK National Health Service<br>UK Police Forces<br>UK Royal Air Force<br>UK Royal Navy<br>United Nations<br>US Army<br>US CentCom<br>US Department of Defence - Pentagon<br>US Department of Labor<br>US Holocaust Memorial Museum<br>US Lawrence Livermore National Laboratory<br>US Marine Corps Tactics and Operations<br>US National Institute of Health<br>US National Institute of Neurological Disorders and Stroke<br>US National Institute of Standards and Technology<br>US Navy<br>US Secret Service<br>Verizon<br>Walt Disney<br>Whitby Bird<br>World Fuel Services Corp.<br>Xstrata plc<br>Youth Hostel Association<br>Zurich Financial Services";
memorycontent=memorycontent+"<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></p>";
////NO NEED TO EDIT BELOW THIS LINE////////////
var combinedcssTable="width:"+(parseInt(memorywidth)+6)+"px;background-color:"+memorybgcolor+";padding:"+memorypadding+";"+borderCSS+";"
var combinedcss="width:"+memorywidth+";height:"+memoryheight+";"
var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : ''
memoryspeed=(document.all)? memoryspeed : Math.max(1, memoryspeed-1) //slow speed down by 1 for NS
var copyspeed=memoryspeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style=" font-size:11px; font-weight:bold;visibility:hidden;position:absolute;top:0px;left:0px">'+memorycontent+'<\/span>')
var actualwidth=''
var memoryscroller
if (window.addEventListener)
window.addEventListener("load", populatescroller, false)
else if (window.attachEvent)
window.attachEvent("onload", populatescroller)
else if (document.all || document.getElementById)
window.onload=populatescroller
function populatescroller(){
memoryscroller=document.getElementById? document.getElementById("memoryscroller") : document.all.memoryscroller
memoryscroller.style.top=parseInt(memorywidth)+8+"px"
if (persistlastviewedmsg && get_cookie("lastscrollerpos")!="")
revivelastmsg()
memoryscroller.innerHTML=memorycontent
actualwidth=document.all? temp.offsetHeight : document.getElementById("temp").offsetHeight
lefttime=setInterval("scrollmarquee()",20)
}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = ""
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset)
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}}
return returnvalue;
}
function savelastmsg(){
document.cookie="lastscrollerpos="+memoryscroller.style.top
}
function revivelastmsg(){
lastscrollerpos=parseInt(get_cookie("lastscrollerpos"))
memoryscroller.style.top=parseInt(lastscrollerpos)+"px"
}
if (persistlastviewedmsg && persistmsgbehavior=="onload")
window.onunload=savelastmsg
function scrollmarquee(){
if (parseInt(memoryscroller.style.top)>(actualwidth*(-1)+8))
memoryscroller.style.top=parseInt(memoryscroller.style.top)-copyspeed+"px"
else
memoryscroller.style.top=parseInt(memorywidth)+8+"px"
}
if (iedom){
with (document){
document.write("<table cellspacing='0' cellpadding='0' style='"+combinedcssTable+"'><tr><td>")
write("<div style='position:relative;overflow:hidden;"+combinedcss+"' onMouseover='copyspeed=pausespeed' onMouseout='copyspeed=memoryspeed'>")
write("<div id='memoryscroller' style='font-weight:bold; font-size:11px; position:absolute;left:0px;top:0px;' "+divonclick+"><\/div>")
write("<\/div>")
document.write("<\/td><\/tr><\/table>")
}}
