var myScroller1 = new Scroller(0, 0, 140, 90, 0, 0); 
myScroller1.setColors("#003366", "#FFFFFF", "#FFFFFF"); 
myScroller1.setFont("arial,sans-serif", "-2"); 
myScroller1.addItem("WELCOME TO THE SAFEPIPE CENTRE!"); 
myScroller1.addItem("Your one-stop shop for Safepipe resources, particularly relevant for Safepipe and VPN Client administrators:"); 
myScroller1.addItem("- Use the range of concise, instructive and illustrated setup guides in the HowTo section...");
myScroller1.addItem("- Find answers to commonly asked questions about Safepipe and its features in the Q&A section...");
myScroller1.addItem("- Check Safepipe's ability to interoperate with third party VPN devices in Interoperability section..."); 
myScroller1.addItem("- Extend your knowledge through the range of self-test courses that you find in the Courses section..."); 
myScroller1.addItem("- Look up those abbrev. in the Encyclopedia...");
myScroller1.addItem("It's all here for YOU, so let us know if you want more!"); 
function runmikescroll() 
{ 
var layer; 
var mikex, mikey; 
layer = getLayer("placeholder"); 
mikex = getPageLeft(layer); 
mikey = getPageTop(layer); 
myScroller1.create(); 
myScroller1.hide(); 
myScroller1.moveTo(mikex, mikey); 
myScroller1.setzIndex(100); 
myScroller1.show(); 
} 
window.onload=runmikescroll 
