var howOften = 4; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();
    items[0]="<div align='justify'><font face='Helvetica' color='#FFFFFF' size='4'><strong>Telecom</strong></font><br/><br/><font face='arial' color='#FFFF99' size='2'>Telecom technology has been one of our focus areas right from beginning. We have years of experience in developing and maintaining telecom middleware solutions and other software solutions such as push-to-talk (PTT), net dispatch messenger, application server test tool framework and development for SIP and ....<a href=\"index2.php?content=softDevelopment&amp;topic=9000_Telecom_Integra_Micro_Software_Services\" style=\"text-decoration:none;\"><font color='#FFFFFF'>[More]</font></a></font></div>";

	items[1]="<div align='justify'><font face='Helvetica' color='#FFFFFF' size='4'><strong>Technology</strong></font><br/><br/><font face='arial' color='#FFFF99' size='2'>We thrive on the challenge of utilizing technology effectively and efficiently to solve real-world problems. We provide custom solutions built around technology as varied as GIS, biometric, imaging and RFID. Our strength has traditionally been in implementing efficient and ...<a href=\"index2.php?content=softDevelopment&amp;topic=7000_Technology_Integra_Micro_Software_Services\" style=\"text-decoration:none;\"><font color='#FFFFFF'>[More]</font></a></font></div>";
/*
    items[2]="<font face='arial' color='#FFFFFF' size='4'><strong>Imaging and Networking</strong></font><br/><br/><font face='arial' color='#FFFF99' size='2'>Integra has a long track record of building solutions around document imaging technology. Since the early-90s, Integra has been involved in several high profile projects requiring processing of very large volumes of digital images using limited computing resources. The election ID card generation system is one example of ...<a href=\"index2.php?content=banner&amp;topic=7000_Imaging_and_Networking_Services_Integra_Micro_Software_Services\" style=\"text-decoration:none;\"><font color='#FFFFFF'>[More]</font></a></font>";
	
	items[3]="<font face='arial' color='#FFFFFF' size='4'><strong>Value Added Language Services</strong></font><br/><br/><font face='arial' color='#FFFF99' size='2'>The Value Added Language Services (VALS) unit of Integra offers information development and localisation services. Knowledge of a wide range of domains, proficiency in simple technical English, and expertise in handling the latest tools drive ...<a href=\"index2.php?content=banner&amp;topic=6000_Value_Added_Language_Services_Integra_Micro_Software_Services\" style=\"text-decoration:none;\"><font color='#FFFFFF'>[More]</font></a></font>";
	*/
	items[2]="<div align='justify'><font face='Helvetica' color='#FFFFFF' size='4'><strong>Enterprise</strong></font><br/><br/><font face='arial' color='#FFFF99' size='2'>We develop and deliver enterprise software for industry verticals such as media/ entertainment, internet companies, telecom, healthcare, and travel, among others. The enterprise server side portfolio includes: portal, web application / solution and operational tools development. ...<a href=\"index2.php?content=softDevelopment&amp;topic=8000_Enterprise_Integra_Micro_Software_Services\" style=\"text-decoration:none;\"><font color='#FFFFFF'>[More]</font></a></font></div>";

function rotater() {
    if(document.layers) {
        document.placeholderlayer.document.write(items[current]);
        document.placeholderlayer.document.close();
    }
    if(ns6)document.getElementById("placeholderdiv").innerHTML=items[current]
        if(document.all)
            placeholderdiv.innerHTML=items[current];

    current = (current==items.length-1) ? 0 : current + 1; //increment or reset
    setTimeout("rotater()",howOften*1000);
}
window.onload=rotater;
//–>
