/*
*/
var fadeVal;
var quoteNumber=-1;
var quotes=[];
var sources=[];
quotes[0]='"An eye opening wide range view of the RFID world"';
sources[0]='Boots Healthcare International';
quotes[1]='"Very well put together and very informative"';
sources[1]='The Upper Deck company';
quotes[2]='"A very good conference with a lot of information. Great job with the variety of speakers"';
sources[2]='Smart Labels USA 2004 delegate';
quotes[3]='"Excellent"';
sources[3]='Lucent Technologies';
quotes[4]='"Good mix of speakers and topics"';
sources[4]='National Library Board of Singapore';
quotes[5]='"Well attended by the key participants in RFID"';
sources[5]='Marks & Spencer PLC';
quotes[6]='"A must for anyone involved in RFID"';
sources[6]='Ohio State University';
quotes[7]='"Exciting real world RFID applications!"';
sources[7]='Smurfit-Stone Container Corp';
quotes[8]='"I would attend again, good networking opportunity"';
sources[8]='EM Microelectronic';
quotes[9]='"Very Worthwhile"';
sources[9]='Polaroid Corp';
quotes[10]='"Attendance from just about every industry...A great conference!"';
sources[10]='3M Company';
quotes[11]='"Excellent overview of up-to-date status on RFID"';
sources[11]='Samsung';
quotes[12]='"Remarkable, gets better each year"';
sources[12]='Schick & Wilkinson Sword';
quotes[13]='"Once again, IDTechEx has put on a conference full of relevant content and with an excellent audience"';
sources[13]='Innovision';
quotes[14]='"Fantastic conference"';
sources[14]='Infocomm Development Authority of Singapore';
quotes[15]='"Excellent conference with very exciting information"';
sources[15]='Vasogen';
quotes[16]='"Best event I\'ve found to both learn about the latest RFID technology and network with industry players"';
sources[16]='Pitney Bowes';
quotes[17]='"Excellent!"';
sources[17]='Bielomatik';
function startQuotes() {
if(quotes.length>0) newQuote();
}
function fade() {
fadeVal+=16;
if(fadeVal<100) {
var quote=document.getElementById('quote');
var source=document.getElementById('source');
var val=fadeVal.toString(16);
while(val.length<6) val='0'+val;
quote.style.color=getColourString(255,255,255,203,1,3,fadeVal);
source.style.color=getColourString(255,255,255,0,0,0,fadeVal);
setTimeout('fade()',100);
} else {
newQuote();
}
}
function newQuote() {
var quote=document.getElementById('quote');
var source=document.getElementById('source');
quoteNumber=(quoteNumber+1)%(quotes.length);
quote.style.color='#CB0103';
source.style.color='#000000';
quote.innerHTML=quotes[quoteNumber];
source.innerHTML=sources[quoteNumber];
fadeVal=0;
setTimeout('fade()',5000);
}
function getColourString(r1,g1,b1,r2,g2,b2,v1) {
var v2=100-v1;
var r=Math.floor((r1*v1+r2*v2)/100);
var g=Math.floor((g1*v1+g2*v2)/100);
var b=Math.floor((b1*v1+b2*v2)/100);
var retval;
if(r<16) retval='#0'+r.toString(16); else retval='#'+r.toString(16);
if(g<16) retval=retval+'0'+g.toString(16); else retval=retval+g.toString(16);
if(b<16) retval=retval+'0'+b.toString(16); else retval=retval+b.toString(16);
return retval;
}
function breakFree() {
if (top.location) top.location.replace(self.location.href)
else top.document.location.replace(self.document.location.href);
}
function stayInFrame() {
var url=document.location.href;
return url.substring(url.length-17)=='&stayinframe=true';
}
if(top!=self && !stayInFrame()) breakFree();