function randomDisplay() {

	

displayno = 5;

logo_array = new Array(

'<a href=http://ir.asiaone.com/apexpal/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_apex_pal.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/bestworld/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_bestworld.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/bhglobal/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_bh.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/brightworld/index.html target=_blank><img src=http://ir.asiaone.com.sg/ani_logos/ani_brightworld.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/challenger/index.html target=_blank><img src=http://ir.asiaone.com.sg/ani_logos/ani_challenger.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/cosco/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_cosco.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/hgmetal/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_hg_metal.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/hyflux/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_hyflux.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/isdn/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_isdn.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/novena/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_novena.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/osim/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_osim.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/pineagritech/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_pine.gif border=0 height=45 width=140></a>',

'<a href=http://sph.listedcompany.com target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_sph.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/thakral/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_thakral.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asia1.com.sg/meds/ target=_blank><img src=http://ir.asia1.com.sg/ani_logos/ani_meds.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/portek/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_portek.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/asiapower/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_asiapower.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/mfs/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_mfs.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/gallantventure/index.html target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_gallant.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/gmg/ target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_gmg.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/yangzijiang/ target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_yangzijiang.gif border=0 height=45 width=140></a>',

'<a href=http://ir.asiaone.com/henglong/ target=_blank><img src=http://ir.asiaone.com/ani_logos/ani_henglong.gif border=0 height=45 width=140></a>'

);	



	logo_array1 = logo_array;

	eval('logocol').innerHTML = "";

	for(var j=1; j<=displayno; j++) {	

		var randomnumber= Math.floor(Math.random()*logo_array1.length);

		eval('logocol').innerHTML =  eval('logocol').innerHTML + "<p>" + logo_array1[randomnumber] + "</p>";

		logo_array1.splice(randomnumber,1);

	}



	self.setTimeout('randomDisplay()', 4000);

	

} // end function randomDisplay