var theImages = new Array() // do not change this

theImages[0] = '../images/partner_logok/NEC.jpg'
theImages[1] = '../images/partner_logok/FREECOM.gif'
theImages[2] = '../images/partner_logok/GABA.gif'
theImages[3] = '../images/partner_logok/HANSOL.gif'
theImages[4] = '../images/partner_logok/CTX_kicsi.jpg'
theImages[5] = '../images/partner_logok/MAG.gif'
theImages[6] = '../images/partner_logok/OKI.gif'
theImages[7] = '../images/partner_logok/PANASONIC.gif'
theImages[8] = '../images/partner_logok/PROVIEW.gif'
theImages[9] = '../images/partner_logok/AOC.gif'
theImages[10] = '../images/partner_logok/TATUNG.gif'
theImages[11] = '../images/partner_logok/PHILIPS.gif'
theImages[12] = '../images/partner_logok/FUJITSU_SIEMENS.gif'
theImages[13] = '../images/partner_logok/NEOVO.gif'
theImages[14] = '../images/partner_logok/LEXMARK.jpg'
theImages[15] = '../images/partner_logok/LINKSYS.gif'

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(){
document.write('<a href="../garancia_keszulekenkent.html"><img border="0" src="'+theImages[whichImage]+'"></a>');
}

