var theImages = new Array() // leave this as is

theImages[0] = '/ads/ourAdEN.gif'
theImages[1] = '/ads/ourAdEN.gif'
theImages[2] = '/ads/ourAdEN.gif'
theImages[3] = '/ads/ourAdEN.gif'
theImages[4] = '/ads/ourAdEN.gif'


var theURLs = new Array() // leave this as is

theURLs[0] = 'http://www.englishu.com/aboutUs.html'
theURLs[1] = 'http://www.englishu.com/aboutUs.html'
theURLs[2] = 'http://www.englishu.com/aboutUs.html'
theURLs[3] = 'http://www.englishu.com/aboutUs.html'
theURLs[4] = 'http://www.englishu.com/aboutUs.html'

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));

function showImage(){

if(document.cookie)

{
document.write('<a href="'+theURLs[whichImage]+'" target=_blank><img src="'+theImages[whichImage]+'" WIDTH="234" HEIGHT="60" border=1></a>');
}else{
document.write('<a href="http://www.englishu.com/aboutUs.html"><img src="/ads/ourAd.gif" WIDTH="234" HEIGHT="60" border=1></a>');

document.cookie = 'name=ourAd; expires=Thu, 02-Jan-20 00:00:02 GMT';

}
}


