
<!--
function Image(src,height,width) {
    this.src = src;
    this.height = height;
    this.width = width;
//    this.description = description;
}

function setImage(src,height,width) {
    myImageArray[imageArrayIndex++] = new Image(src,height,width);
}

var imageArrayIndex = 0;
var myImageArray = new Array();

setImage("/images/logos/mtnhdw.gif",60,120);
setImage("/images/logos/cci_wr.gif",26,166);
setImage("/images/logos/afb-wr.jpg",60,81);
setImage("/images/logos/leki-wr.jpg",26,120);
setImage("/images/logos/trangoOval-Logo-wr.jpg",40,120);
setImage("/images/logos/telenor-wr.jpg",37,150);
setImage("/images/logos/integro-wr.jpg",41,150);


//document.write(myImageArray);
var ry=Math.floor(Math.random()*myImageArray.length);
if (ry==0) {
ry=1
}

//-->








