
//IE4,IE5,IE6 and NS4+, NS6

var logo=new Array();
logo[0]="<img src='/imgs/indexLogos/qlogic.gif' border='0'>"
logo[1]="<img src='/imgs/indexLogos/windriver.gif' border='0'>"
logo[2]="<img src='/imgs/indexLogos/ibm.gif' border='0'>"
logo[3]="<img src='/imgs/indexLogos/exabyte.gif' border='0'>"
logo[4]="<img src='/imgs/indexLogos/hp.gif' border='0'>"
logo[5]="<img src='/imgs/indexLogos/jungo.gif' border='0'>"
logo[6]="<img src='/imgs/indexLogos/marvell.gif' border='0'>"
logo[7]="<img src='/imgs/indexLogos/seagate.gif' border='0'>"
logo[8]="<img src='/imgs/indexLogos/redhat.gif' border='0'>"
logo[9]="<img src='/imgs/indexLogos/storagetek.gif' border='0'>"
logo[10]="<img src='/imgs/indexLogos/suse.gif' border='0'>"
logo[11]="<img src='/imgs/indexLogos/lsi.gif' border='0'>"
logo[12]="<img src='/imgs/indexLogos/sun.gif' border='0'>"
logo[13]="<img src='/imgs/indexLogos/intel.gif' border='0'>"
logo[14]="<img src='/imgs/indexLogos/xilinx.gif' border='0'>"
logo[15]="<img src='/imgs/indexLogos/fsmlabs.gif' border='0'>"
var currentLogo=0;

var quote=new Array()
quote[0]="&quot;I don’t know why anyone would develop new SCSI firmware – there are so many other things an engineer should be doing to get a new product out the door.&quot;<br><br>&nbsp;&nbsp;<i>-Rod Wideman, Senior Vice President<br>Intelligent Storage, ADIC</i>"
quote[1]="&quot;We are happy to continue to have Breakthrough Systems as our Target Mode Driver Support Partner. They have consistently delivered the highest levels of quality and reliable drivers to our OEM customers.&quot;<br><br>&nbsp;&nbsp;<i>-Amit Vashi, Senior Director, Marketing for QLogic</i>"
quote[2]="&quot;BSI's SCSI target firmware development allows Iomega to focus on the unique aspects of our SCSI products. BSI's SCSI target firmware provides a complete SCSI firmware base, saving both time and resources in the new product development process.&quot;<br><br>&nbsp;&nbsp;<i>-Randy Bauck, Research and Development Product Manager with Iomega</i>"
quote[3]="&quot;BSI's generated Fibre Channel SCSI target firmware development allows ATL to focus on the unique competitive aspects of our library systems products. BSI's SCSI Target Firmware provides a complete SCSI target firmware base, saving both time and resources in the new product development process.&quot;<br><br>&nbsp;&nbsp;<i>-Phil Markgraf, Quantum program manager for its Prism Library Systems</i>"
quote[4]="&quot;We are pleased that Breakthrough Systems has expanded its line of OEM target mode drivers and device software to include support for our new high performance iSCSI ASICs. Breakthrough Systems’ off-the-shelf drivers and a full line of SCSI target device software solutions provides a great means to speed time to market for OEMs incorporating our line of storagecontrollers, including the growing line of QLogic iSCSI interface ASICs and SANblade HBA products.&quot;<br><br>&nbsp;&nbsp;<i>-Frank Berry, vice president of marketing, QLogic Corp</i>"
var currentQuote=0;

var ns6=document.getElementById&&!document.all

function changeBoth(){
	changeLogo();
	changeQuote();
}

function changeLogo(){
if(document.layers){
document.layer1.document.write(logo[currentLogo])
document.layer1.document.close()
}
if(ns6)document.getElementById("div1").innerHTML=logo[currentLogo]
{
if(document.all){
div1.innerHTML=logo[currentLogo]
}
}
if (currentLogo==15) currentLogo=0
else currentLogo++
setTimeout("changeLogo()", 3000)
}

function changeQuote(){
if(document.layers){
document.layer2.document.write(quote[currentQuote])
document.layer2.document.close()
}
if(ns6)document.getElementById("div2").innerHTML=quote[currentQuote]
{
if(document.all){
div2.innerHTML=quote[currentQuote]
}
}
if (currentQuote==4) currentQuote=0
else currentQuote++
setTimeout("changeQuote()", 5000)
}

window.onload=changeBoth