function popup_thing (input_url,w,h,s) {
 window.open(input_url,"_blank","height="+h+",width="+w+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars="+s+",status=0,toolbar=0");
}


// Stick this in your javascript.js file

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/partners/logo_1.gif'
theImages[1] = 'images/partners/logo_2.gif'
theImages[2] = 'images/partners/logo_3.gif'
theImages[3] = 'images/partners/logo_4.gif'
theImages[4] = 'images/partners/logo_5.gif'
theImages[5] = 'images/partners/logo_6.gif'
theImages[6] = 'images/partners/logo_7.gif'
theImages[7] = 'images/partners/logo_8.gif'
theImages[8] = 'images/partners/logo_9.gif'
theImages[9] = 'images/partners/logo_10.gif'
theImages[10] = 'images/partners/logo_11.gif'
theImages[11] = 'images/partners/logo_12.gif'
theImages[12] = 'images/partners/logo_13.gif'
theImages[13] = 'images/partners/logo_14.gif'
theImages[14] = 'images/partners/logo_15.gif'
theImages[15] = 'images/partners/logo_16.gif'
theImages[16] = 'images/partners/logo_17.gif'
theImages[17] = 'images/partners/logo_18.gif'
theImages[18] = 'images/partners/logo_19.gif'
theImages[19] = 'images/partners/logo_20.gif'

// 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));
function showImage(){
document.write('<img alt="" src="'+theImages[whichImage]+'">');
}

