var max = 4;

var nrImages = 4;

function makeImages() {

this[0] = "http://i46.tinypic.com/34ezxh4.gif";
this[1] = "http://i46.tinypic.com/34ezxh4.gif";

this[2] = "http://i46.tinypic.com/34ezxh4.gif";
this[3] = "http://i46.tinypic.com/34ezxh4.gif";




this.length = nrImages;

}



function makeLinks() {

this[0] = "http://track.ozonion.com/aff_c?offer_id=18&aff_id=132&url_id=433";

//notebook sony vaio //

this[1] = "http://track.ozonion.com/aff_c?offer_id=18&aff_id=132&url_id=433";
//  tv lcd   //


this[2] = "http://track.ozonion.com/aff_c?offer_id=18&aff_id=132&url_id=433";

// n96 //

this[3] ="http://track.ozonion.com/aff_c?offer_id=18&aff_id=132&url_id=433";

// ihpone  //



this.length = nrImages;
}


var vetImages = new makeImages();
var vetLinks = new makeLinks();
var x = Math.round(Math.random()*max);
var y = max / nrImages;
for(var cont = 1;cont*y<= max;cont++) {
if (x <= (cont*y)) {
document.write("<a href="+vetLinks[cont-1]+" target=_blank><img src="+vetImages[cont-1]+" border=0></a>");
break;
}
}

