//html starts
var acontent=new Array();
acontent[0] = "<div class='border'><h2><a href='whozup.html#L04'>07.23.2010<br /> WhoZup !</a></h2><h5>Up Management in your showroom<br /><br />WhoZup is a small touch-screen device that can be installed in your showroom.<br />Sales people sign on and add themselves to the up list.<br />WhoZup will let them know when they're up, and will text message them to let them know their position.<br /></h5></div>";
acontent[1] = "<div class='border'><h2><a href='index.html#L03'>05.11.2010<br /> VIP CRM for the Automotive Industry<br /></a></h2><h5>Now, Tango Next Generation is VIP !!!<br /><br />Access your prospects from anywhere over the Internet without compromising the power of your CRM</h5></div>";
acontent[2] = "<div class='border'><h2><a href='index.html#L01'>03.21.2010<br /> Tango Next Generation<br /></a></h2><h5>Offer module<br /><br />Prepare, print and track offers made to your prospects<br /><br /></h5></div>";
acontent[3] = "<div class='border'><h2><a href='dataservices.html#L02'>06.15.2010<br /> Data Services<br /></a></h2><h5>Need to extract data from your DMS?<br /><br />Call our data services experts<br /><br />866-798-8585</h5></div>";
acontent[4] = "<div class='border'><h2><a href='ecapture.html#L03'>05.11.2006<br /> eCapture<br /></a></h2><h5>Want a real-time closeout survey?<br /><br />Install eCapture in your showroom and service drive and let customers use our touch-screen system to let you know of their satisfaction level.<br /><br />And of course, let's take this opportunity to collect their email address.</h5></div>";
//html ends

//javascript starts
var delay=15000;
var ie4=document.all&&!document.getElementById;
var DOM2=document.getElementById;
var index=0;

function updatecontent(){
  if (index>=acontent.length)
	index=0
  if (DOM2){
	document.getElementById("news").innerHTML=acontent[index];
	setTimeout("updatecontent()", delay);
  }
  else if (ie4)
	document.all.news.innerHTML=acontent[index];
  index++
}

if (ie4||DOM2)
  document.write('<div id="news"></div>');

if (window.addEventListener)
  window.addEventListener("load", updatecontent, false)
else if (window.attachEvent)
  window.attachEvent("onload", updatecontent)
else if (document.getElementById)
  window.onload=updatecontent;

//javascript ends




