/**************************************
* http://vertical-scroller.vbarsan.com/
*    This notice may not be removed 
**************************************/

//-- Begin Scroller's Parameters and messages -->
//scroller's width
var swidth=240;

//scroller's height
var sheight=160;


//scroller's speed 
var sspeed=2;
var restart=sspeed;
var rspeed=sspeed;

//scroller's pause 
var spause=2000;

//scroller's background
var sbcolor="#ffffff";
//messages: set your own; use as many as you'd like; set up Hyperlinks to
//URLs as you normally do: <a target=... href="... URL ...">..message..</a>;
var singletext=new Array();
singletext[0]='<table CELLSPACING="0" CELLPADDING="0"><tr><td height="80px" valign="middle"><table align="center"><tr><td></td></tr></table><div class=tanc><p>"The 2010 event went very well for Kodak. I was incredibly busy and have many new contacts to follow up on. I look forward to next year in Boston." - <b>Eastman Kodak, US</b></p><p>"TechConnect is unique in specifically bringing together the creators of breakthrough technologies with corporations who can help commercialize, adopt, buy, re-sell and invest in those technologies." - <b> Atrium Capital, US.</b></p><p>"Through Tech Connect, my company was able to present our start-up to Fortune 100 companies, top investors and other potential customers that we may never have gotten an audience with otherwise. Tech Connect is more than cutting edge, it’s leading edge!" - <b>Inventis Group</b></p><p>"Thanks to the TechConnect IP Review sessions, we were able to present three different ETH Zurich licensing opportunities to an international audience. For ETH transfer, it was both a great way to establish contacts in and boost access to the technology arena" -<b> ETH Zurich (Swiss Federal Institute of Technology)</b></p><p>"Energy and climate change are important national security issues, and nanotechnology offers the promise of enabling solutions to challenging problems in these areas. Lockheed Martin is proud to have been the host sponsor of this important event, which provided the opportunity for our workforce to collaborate with top researchers from around the world and gain insights into emerging technologies that can support our customer’s needs." - <b>Dr. Ray O Johnson, Senior Vice President and Chief Technology Officer of Lockheed Martin</b></p><p>"Thank you for helping us put together such a great networking event. We received a lot of positive feedback both internally from our colleagues and externally by the people who attended. We look forward to working with TechConnect again in the near future." - <b>Harvard University, Office of Technology Development</b></p><p>"I really appreciated your great support for the TechConnect 2010. With your support, our booth was operated well, and also our colleagues had great opportunity to build relationship with other companies." - <b> KITECH, US and Korea</b></p><p>"I found the conference extremely interesting and useful, and I will recommend that Merck continue to participate in upcoming conferences." - <b>Merck, US</b></p><p>"This year again, I met with very interesting people and I’m looking forward to continuing my discussions with them. TechConnect is really the best conference for tech transfer people. The only place where we can so easily meet with VPs of big corporations and learn about their technology needs. See you next year in Boston!" - <b>Univalor, Canada</b></p><p>"The event was a success for us. We are grateful for all your hard work. We would like to thank you for your usual excellent hospitality." - <b>Japan Technology Group, US and Japan</b></p></div></td></tr></table>';
singletext[1]='<div class=tan></div>';
//singletext[...]='...';
//-- end Parameters and message -->

//-- begin: Scroller's Algorithm -->
var ii=0;
function goup(){if(sspeed!=rspeed*16){sspeed=sspeed*2;restart=sspeed;}}

function start(){
if(document.getElementById){ns6div=document.getElementById('iens6div');ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[0];sizeup=ns6div.offsetHeight;ns6scroll();}
else 
if(document.layers){ns4layer=document.ns4div.document.ns4div1;ns4layer.top=sheight;ns4layer.document.write(singletext[0]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}
else 
if(document.all){iediv=iens6div;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[0];sizeup=iediv.offsetHeight;iescroll();}}
function iescroll(){if(iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){iediv.style.pixelTop=0;setTimeout("iescroll()",spause);}else 
if(iediv.style.pixelTop>=sizeup*-1){iediv.style.pixelTop-=sspeed+"px";setTimeout("iescroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[ii];sizeup=iediv.offsetHeight;iescroll();}}
function ns4scroll(){if(ns4layer.top>0&&ns4layer.top<=sspeed){ns4layer.top=0;setTimeout("ns4scroll()",spause);}else 
if(ns4layer.top>=sizeup*-1){ns4layer.top-=sspeed;setTimeout("ns4scroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;ns4layer.top=sheight;ns4layer.document.write(singletext[ii]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}}
function ns6scroll(){if(parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){ns6div.style.top=0;setTimeout("ns6scroll()",spause);}else 
if(parseInt(ns6div.style.top)>=sizeup*-1){ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";setTimeout("ns6scroll()",100);}
else{if(ii==singletext.length-1)ii=0;else ii++;
ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[ii];sizeup=ns6div.offsetHeight;ns6scroll();}}
//-- end Algorithm -->
