<!-- Begin
function scrollit(seed) {
var m1  = "Atlas Labelling Systems .....Innovative Solutions For Label Manufacturers";
var m2  = ".....Laser Cutting, ....Hot Foil Printing, ....Label Finishing, .....Platemaking, ....Tagging";
var m3  = ".....Precision Machinery With All The Latest Technology";
var m4  = ".....Please contact us for any further information";
var m5  = ".....NEW... NEW... NEW... SET 3030 SILK SCREEN PRINTING MACHINE .....";
var msg=m1+m2+m3+m4+m5;
var out = " ";
var c   = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
      }
   }
}
// End -->