// Copyright Addaptron Software
var j = 0;
quot_txt = [
"Free first 30-day fully-functional use",

"All-in-one collection of comprehensive tools",

"Tools that address the challenges of the modern stock market",

"Fast automatic calculations",

"Standalone computing to keep your data privately",

"Fast automatic calculations",

"Easy to use",

"Free update and technical support"

]
function show_txt()
{ 
document.getElementById('scan_txt').innerHTML = quot_txt[j];
j = j + 1;
if (j > 7) j = 0;
setTimeout("show_txt()",2700)
}


