<!-- Begin


// Set up the image files to be used.
var theImages = new Array() // do not change this
theImages[0] = '/STI/STIFILES/countryicons/cty_ayosdito.jpg'
theImages[1] = '/STI/STIFILES/countryicons/cty_berniaga.jpg'
theImages[2] = '/STI/STIFILES/countryicons/cty_mudah_logo.jpg'
theImages[3] = '/STI/STIFILES/countryicons/cty_panduan.gif'
theImages[4] = '/STI/STIFILES/countryicons/cty_sou.gif'

// Set the links to be used for the images
var theLink = new Array()
theLink[0] = 'http://www.ayosdito.ph'
theLink[1] = 'http://www.berniaga.com'
theLink[2] = 'http://www.mudah.my'
theLink[3] = 'http://www.701panduan.com'
theLink[4] = 'http://www.701sou.com'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));


document.write('<a target="_blank" href="'+theLink[whichImage]+'"><img src="'+theImages[whichImage]+'" border="0"></a>');


//  End -->

