/*
*/
var fadeVal;
var quoteNumber=-1;
var quotes=[];
var sources=[];
quotes[0]='"IDTechEx is definitely, very much, in an informational sweet spot."';
sources[0]='Gary Lundberg, Quad Graphics, USA';
quotes[1]='"A huge success. It was a well organized and very topically focused program."';
sources[1]='Dr Vicki A.Barbur, Technology Director, Eastman Kodak Company';
quotes[2]='"Excellent networking opportunities built in"';
sources[2]='';
quotes[3]='"Well done for a very well run conference. I found it very useful, informative and fun!"';
sources[3]='Marc Wisnudel, GE Global Research';
quotes[4]='"Very exciting"';
sources[4]='David Hughes, G&K Tech Media';
quotes[5]='"Very informative, as a newcomer I learnt a great deal at the conference"';
sources[5]='Sean Weir, Ferro Corp';
quotes[6]='"Very good mix of actual experiences, technologies and industry visions."';
sources[6]='Mick Austin, Asymtek';
quotes[7]='"An eye opening wide view of the RFID world"';
sources[7]='Boots Healthcare International';
quotes[8]='"Excellent overview of up-to-date status of RFID"';
sources[8]='Samsung';
quotes[9]='"Well attended by key participants in RFID"';
sources[9]='Marks & Spencer';
quotes[10]='"Remarkable, gets better each year"';
sources[10]='Schick & Wilkinson Sword';
quotes[11]='"A must attend for anyone involved in RFID"';
sources[11]='Ohio State University';
quotes[12]='"Fantastic Conference"';
sources[12]='Infocomm Development Authority of Singapore';
quotes[13]='"Very worthwhile"';
sources[13]='Polaroid Corp';
quotes[14]='"A great conference!"';
sources[14]='3M Company';
quotes[15]='"Best event I\'ve found to both learn about the latest RFID technology and network with industry players"';
sources[15]='Pitney Bowes';
quotes[16]='"To baseline where you are, what you want to achieve and how far you are on that RFID journey, there is no better event to become truly informed."';
sources[16]='Lee Doherty, Head of Supply Chain Services, Rolls-Royce';
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();