//Specify the marquee's width (in pixels)
var marqueewidth="190px"
//Specify the marquee's height
var marqueeheight="120px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1
//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
var marqueecontent='';
marqueecontent+='
Young Collingwood footballer supports Burnet\'s work with young people.
- Collingwood footballer Heritier \'Harry\' O\'Brien is proud to join the Burnet Institute as a youth ambassador.
- To find out more, click here.
Integrating the Centre for Harm Reduction into International Health
- I am pleased to announce that as of July 1, the Centre for Harm Reduction will merge with the Centre for International Health to create a new CIH. The merger is part of larger structural changes that are occurring across the Institute, designed to consolidate related programs into larger entities that will promote greater strategic opportunities.
- To find out more, click here.
\'Go for your life\' step up to the Romp
Melbourne City Romp - Sunday 19 October 2008- To find out more, click here.
2008 Fenner Lecture
- The 2008 Fenner Lecture was delivered by the Centre for International Health\'s Associate Professor Mike Toole.
- To find out more, click here.
Brisbane City Romp - Sunday 21 September 2008
The Burnet Institute is pleased to announce the first ever Brisbane City Romp!- To find out more, click here.
Burnet Institute Annual Financial Report 2006
- The 2006 Financial Report is now available as a downloadable PDF file.
- To find out more, click here.
IMPACT Autumn 2008
- Read the latest news from the Burnet Institute in our most recent newsletter.
- To find out more, click here.
Integrating harm reduction into development and international health
- Integrating harm reduction into development and international health
- To find out more, click here.
National Youth Week 5 - 13 April 2008
- To find out more, click here.
Report on the Inaugural AMREP World Health Day Symposium
- Monday 7th April 2008.
- To find out more, click here.
Share your good fortune with the Burnet Institute by donating through ShareGift Australia
- You can help support the work of the Burnet Institute by donating small holdings of your shares, particularly those which are not worth selling because they would be difficult or too expensive to trade, with all proceeds from the sale going to support the Institute.
- To find out more, click here.
Melbourne scientist for the role of Director
Following an extensive international search, the Burnet Institute has appointed Melbourne scientist Professor Brendan Crabb,as the new Director and Chief Executive Officer of the Institute.- To find out more, click here.
'
// Begin logic
marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee
function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.top=parseInt(marqueeheight)+2+"px"
cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+2
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
lefttime=setInterval("scrollmarquee()",40)
}
window.onload=populate
function scrollmarquee(){
if (iedom){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+2))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+2+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+2))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+2
}
}
if (iedom||document.layers){
with (document){
if (iedom){
write('')
}
else if (document.layers){
write('')
write('')
write('')
}
}
}