/*
*/
var fadeVal;
var quoteNumber=-1;
var quotes=[];
var sources=[];
quotes[0]='"Presence of important companies"';
sources[0]='Friedrich Eibensteiner, Prelonic Technologies';
quotes[1]='"The source of latest information"';
sources[1]='Peter Buttiens, ESMA';
quotes[2]='"Overview on recent progress on printed electronics"';
sources[2]='Ralf Kissel, Heidelberger Druckmaschinen AG';
quotes[3]='"The status of future of organic and printed electronics"';
sources[3]='Zugang Liu, Nanoco Technologies';
quotes[4]='"Desire to stay current"';
sources[4]='David Sime, Soligie';
quotes[5]='"Most important event in Europe regarding PE"';
sources[5]='Petra Burger, Fusion UV Systems GmbH';
quotes[6]='"Good experience with IDTechEx"';
sources[6]='Martin Krebs, VARTA Microbattery GmbH';
quotes[7]='"Show in San Francisco last year"';
sources[7]='Darin Stotz, Northfield Automation';
quotes[8]='"This is \'the\' conference in the field."';
sources[8]='Mike Johnson, CIT Ltd';
quotes[9]='"Location, facilities, general organization - excellent"';
sources[9]='Dr Martina Dryer, University of Oklahoma';
quotes[10]='"Good organization"';
sources[10]='Riju Davis, Henkel';
quotes[11]='"Well organized."';
sources[11]='Sven Rudolph, Nordenia Technologies GmbH';
quotes[12]='"IDTechEx have done steps to link the technologies"';
sources[12]='Mher Mehrabyan, Printinfo JV';
quotes[13]='"A lot of interesting presentations. The schedule was respected: good point"';
sources[13]='Aurore Denneulin, Polypore Europe';
quotes[14]='"Excellent!"';
sources[14]='Francisco Costarrosa, Festo AG';
quotes[15]='"Great event!"';
sources[15]='Mateusz Jarosz, Dresden University of Technology';
quotes[16]='"Great speakers! Well coordinated and efficient use of time"';
sources[16]='George Nagle, Crayola LLC';
quotes[17]='"Well organized conference with variety of speakers and topics"';
sources[17]='Dr Martina Dreyer, University of Oklahoma';
quotes[18]='"The perfect networking environment"';
sources[18]='Friedrich Eibensteiner, Prelonic Technologies';
quotes[19]='"The networking dinner was particularly useful"';
sources[19]='Mike Stannard, Bac2 Ltd';
quotes[20]='"Very well organized conference, good platform for networking"';
sources[20]='Petra Burger, Fusion UV Systems GmbH';
quotes[21]='"Very good for contents and organization"';
sources[21]='Mirko Fucksia, Coveme';
quotes[22]='"Very good for presenting developments and the chance to network"';
sources[22]='Zugang Liu, Nanoco Technologies';
quotes[23]='"This event has been carefully organized"';
sources[23]='Riju Davis, Henkel';
quotes[24]='"Very informative and provides a great forum for networking"';
sources[24]='Paul Simpson, BASF-SE';
quotes[25]='"Good mixture of all important printed electronics fields and applications! Congratulations!"';
sources[25]='Dirk Heukelbach, Renolit AG';
quotes[26]='"Very good overview on all major PE topics!"';
sources[26]='Dirk Heukelbach, Renolit AG';
quotes[27]='"Good and technical approach on the wide and broad subject of printed electronics"';
sources[27]='Peter Buttiens, ESMA';
quotes[28]='"This conference was an excellent opportunity for us"';
sources[28]='Joost Valeton, NeoDec';
quotes[29]='"If you are involved in printed electronics in any way, this conference is a must"';
sources[29]='Mike Johnson, CIT';
quotes[30]='"This must be the largest event in the field"';
sources[30]='Mike Johnson, CIT';
quotes[31]='"Very useful introduction into the future chances of printed electronics"';
sources[31]='Daniel Senff, VDI Technology Center';
quotes[32]='"Get the latest information"';
sources[32]='Daniel Senff, VDI Technology Center';
quotes[33]='"Lab tour was very good"';
sources[33]='Koichi Hirano, Matsushita Electric (Panasonic)';
quotes[34]='"A lot of information, commercial and technical!"';
sources[34]='Albrecht Gebhard, Stork';
quotes[35]='"It\'s very interesting and useful for research"';
sources[35]='Rosa Aguirre, ITENE';
quotes[36]='"Filled my knowledge gap on both technology (comparisons) and markets."';
sources[36]='Thanks. James Lewis, Bac2 Ltd';
quotes[37]='"Good crash course on photovoltaics by Prof Jabbour Peter Kruijt, Holst Centre/TNO"';
sources[37]='Peter Kruijt, Holst Centre/TNO';
quotes[38]='"Meeting the industry under one roof"';
sources[38]='Ronen Lin, Citala Ltd';
quotes[39]='"In the current economic climate"';
sources[39]='Mike Stannard, Bac2 Ltd';
quotes[40]='"I think the organization and venue were excellent"';
sources[40]='Ray Pimentel, SciReality LLC';
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();