
<!--




var secondboxno = 8; // No of lines in second box NEWS  ##########

var thirdboxno = 6; // No of contents in third box CUSTOMER QUOTES ,    #########


var secondboxpages=2;

var rand=Math.floor(secondboxpages*Math.random());


var iii = Math.floor(thirdboxno*Math.random());
//This is start of second box section


//This text will be shown in box2
var r_text = new Array ();
r_text[0] = "<li>Benefits: <strong>2016 Reports and KPIs</strong> to measure your company's success. <a href='/press/20090325.htm'>Read more...</a></li>";
r_text[1] = "<li>Events: See us at <strong>Sage Summit 2009</strong>, on 11/09/09. <a href='/press/20090828.htm'>Read more...</a></li>";
r_text[2] = "<li>Partnership: DataSelf becomes a <strong>top Microsoft ISV partner</strong>. <a href='/press/20090528.htm'>Read more...</a></li>";
r_text[3] = "<li>Affordable: Business intelligence becomes a <strong>no-brainer</strong>. <a href='/press/20081223.htm'>Read more...</a></li>";
r_text[4] = "<li>News: <strong>Recession's bright spot: </strong>mid-size companies turn to BI. <a href='/press/20090415.htm'>Read more...</a></li>";
r_text[5] = "<li>Benefits: <strong>Business intelligence scalpel</strong> for company <strong>cost-cutters</strong>. <a href='/press/20081029.htm'>Read more...</a></li>";
r_text[6] = "<li>Events: See us at <strong>Sage Summit 2009</strong>, on 11/09/09. <a href='/press/20090828.htm'>Read more...</a></li>";
r_text[7] = "<li>Partnership: DataSelf becomes a <strong>Gold-Certified Microsoft partner</strong>. <a href='/press/20090731.htm'>Read more...</a></li>";
r_text[8] = "<li>Partnership: DataSelf becomes a <strong>Gold-level Sage Development Partner</strong>. <a href='/press/20090708.htm'>Read more...</a></li>";
// end of box2

var ii = Math.floor(secondboxno*Math.random());




//This text will be shown in box3     ######
var r_text3 = new Array ();
r_text3[0] = "<p align='left'>&quot;Being an old dog, I know software that meets one's expectations is rare. DataSelf BI has far exceeded mine. We bought it for its world-class sales reporting, and now I'm <strong>saving up to $500,000 annually</strong> because I also use it to manage my inventory and purchasing more effectively.&quot; <a href='customers.htm'>Read more...</a></p> John Barrett / COO, Wiley X Eyewear ";
r_text3[1] = "<p align='left'>&quot;DataSelf BI has helped us <strong>save around $250,000</strong> in discounts on over-stocked inventory. That alone has made the small investment in this enterprise-class software a miracle.&quot; <a href='customers.htm'>Read more...</a></p>Kevin Cunningham / IT Director, Scorpion Sports, Inc.";
r_text3[2] = "<p align='left'>&quot;After email, DataSelf BI is <strong>the first thing the CEO checks in the morning</strong>. I use it religiously. You can drill down, drill up, and drill back in history. You can look at snapshots on how we're doing versus how we've done the past three years.&quot; <a href='/brochures/DataSelfBI_Success_Implus.pdf'>Read more...</a></p> Sam Prestipino / COO, Implus Footcare LLC";
r_text3[3] = "<p align='left'>&quot;In the produce business, things change fast. With DataSelf BI, <strong>our business data becomes live</strong>. I can bend the data, shape it, move it around. It becomes live in ways that a piece of paper just can't.&quot; <a href='customers.htm'>Read more...</a></p>Toine van der Knaap / General Manager, St. Davids' Hydroponics";
r_text3[4] = "<p align='left'>&quot;It now takes just seconds to see trends in sales and budgets -- areas that took a long time before. People here are getting more and more excited. <strong>We now act on new trends as they emerge, while the time is right, when adjustments can make the biggest impact</strong>.&quot; <a href='customers.htm'>Read more...</a></p>Daniel Schnyder / Special Projects, Emmi (USA), Inc.";
r_text3[5] = "<p align='left'>&quot;<strong>Forget about eating a donut</strong>...I didn't even have time to take a bite of the donut before I finished my first report. I can't wait to take this Porsche out of the parking lot.&quot; <a href='customers.htm'>Read more...</a></p>Robert C. / Controller, Food Should Taste Good, Inc.";
//End of forth box


//This will be shown as images    ######
var r_text4 = new Array ();
r_text4[0] = "images/"+"wileyx.jpg";
r_text4[1] = "images/"+"scorpion.jpg";
r_text4[2] = "images/"+"implus.jpg";
r_text4[3] = "images/"+"stdavids.jpg";
r_text4[4] = "images/"+"emmi.jpg";
r_text4[5] = "images/"+"fstg.jpg";
// end of image section

var zz=iii;


var yy=rand*3;

function showup(){
document.getElementById("box2").innerHTML="<ul>"+r_text[window.yy] + r_text[window.yy+1] + r_text[window.yy+2]+"</ul>";
window.yy = window.yy+3;
if(window.yy>=window.secondboxno){	window.yy=0;   }
}

function showup2(){
//alert(window.zz);
document.getElementById("box3").innerHTML=r_text3[window.zz];
document.getElementById("box4").innerHTML="<img src='"+r_text4[window.zz]+"' id='dyimage' name='dyimage' align='right'/>";

window.zz++;
if(window.zz>=window.thirdboxno){	window.zz=0;   }
}



function showtext(){
document.getElementById("box2").innerHTML=r_text[window.yy] + r_text[window.yy+1] + r_text[window.yy+2];
document.getElementById("box3").innerHTML= "<img src='"+r_text4[window.zz]+"' id='dyimage' name='dyimage' align='right'/>" + r_text3[window.zz];;
document.getElementById("box4").innerHTML="<img src='"+r_text4[window.zz]+"' id='dyimage' name='dyimage' align='right'/>";


}

//-->

function change()
{

showup();
showup2();
t=setTimeout("change()",15000);
}



