var M1,M2,M3;

function Init(){

M1=new zxcMarquee({
 ID:'tst1',      // the unique ID name of the parent DIV.                            (string)
 Mode:'H',       //(optional) the mode of execution, Horizontal' or 'Vertical'.      (string, default = 'Vertical')
 Speed:-2,        //(optional) the speed of execution, 1 = slow, 10 = fast, 0 = stop. (digits, default = -1)
 DelayStart:2000 //(optional) the auto start in milli seconds.                       (digits, default = 10)
});


}

if (window.addEventListener){
 window.addEventListener('load',Init, false);
}
else if (window.attachEvent){
 window.attachEvent('onload',Init);
}
