<!--

// Generate a Random Number Between 1 and 5
var randomnumber = Math.round(Math.random()*2);

// Select a movie and execute the corresponding function
if (randomnumber == 1)
{movie1();}

else {movie2();}

//Functions to write out the correct flash movie resource.
function movie1(){
document.write("<img src='/_media/images/quotes/greybar.gif' border='0' class='QuoteBar' /><br><a href='http://www.crf.it/' target='_blank'><img src='/_media/images/logos/logo_fiat.gif' alt='FIAT' border='0' /></a><p class='QuoteText'> &quot;FIAT Research Center is trying to leverage our large portfolio of Intellectual Property. Global Startups is finding opportunities for this in the U.S. market&quot;</p><p class='QuotePerson'>Massimo de Benedetti, FIAT</p><p><a href='/clients/business_development.html'><img src='/_media/images/logos/mo.tech.gif' alt='View more business development clients' border='0' class='QuoteViewMore'/></a></p>")
}

function movie2(){
document.write("<img src='/_media/images/quotes/greybar.gif' border='0' class='QuoteBar' /><br><a href='http://www.sssup.it' target='_blank'><img src='/_media/images/logos/sssa.gif' alt='University of Pisa' border='0' /></a><p class='QuoteText'> &quot;We believe that the Technology Transfer service Global Startups is offering will be very valuable for our future research.&quot;</p><p class='QuotePerson'>Professor Riccardo Varaldo, Scuola Superiore Sant'Anna Pisa</p><p><a href='/clients/business_development.html'><img src='/_media/images/logos/mo.tech.gif' alt='View more business development clients' border='0' class='QuoteViewMore'/></a></p>")
}

//-->

