<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theUrl = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
theImages[0] = 'sf4.jpg'
theImages[1] = 'sf5.jpg'
theImages[2] = 'sf6.jpg'
theImages[3] = 'sf7.jpg'  <!-- cette personne-ci -->
theImages[4] = 'sf8.jpg'
theImages[5] = 'sf9.jpg'
theImages[6] = 'sf10.jpg'
theImages[7] = 'sf11.jpg'
theImages[8] = 'sf12.jpg'
theImages[9] = 'sf13.jpg'
theImages[10] = 'sf14.jpg'
theImages[11] = 'sf15.jpg'
theImages[12] = 'sf20.jpg'
theImages[13] = 'sf21.jpg'
theImages[14] = 'sf22.jpg'
theImages[15] = 'slinda.jpg'
theImages[16] = 'smireille.jpg'

theImages[17] = 's4.jpg'
theImages[18] = 's5.jpg'
theImages[19] = 's6.jpg'
theImages[20] = 's7.jpg'
theImages[21] = 's8.jpg'
theImages[22] = 's9.jpg'
theImages[23] = 's10.jpg'
theImages[24] = 's12.jpg'
theImages[25] = 's13.jpg'
theImages[26] = 's14.jpg'
theImages[27] = 's15.jpg'
theImages[28] = 's20.jpg'
theImages[29] = 's21.jpg'
theImages[30] = 's22.jpg'
theImages[31] = 'sdavid.jpg'
theImages[32] = 'sdaniel.jpg'

theUrl[0] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/04.htm'
theUrl[1] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/05.htm'
theUrl[2] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/06.htm'
theUrl[3] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/07.htm'
theUrl[4] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/08.htm'
theUrl[5] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/09.htm'
theUrl[6] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/10.htm'
theUrl[7] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/11.htm'
theUrl[8] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/12.htm'
theUrl[9] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/13.htm'
theUrl[10] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/14.htm'
theUrl[11] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/15.htm'
theUrl[12] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/20.htm'
theUrl[13] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/21.htm'
theUrl[14] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/22.htm'
theUrl[15] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/linda.htm'
theUrl[16] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/feminin/mireille.htm'


theUrl[17] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/04.htm'
theUrl[18] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/05.htm'
theUrl[19] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/06.htm'
theUrl[20] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/07.htm'
theUrl[21] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/08.htm'
theUrl[22] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/09.htm'
theUrl[23] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/10.htm'
theUrl[24] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/12.htm'
theUrl[25] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/13.htm'
theUrl[26] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/14.htm'
theUrl[27] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/15.htm'
theUrl[28] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/20.htm'
theUrl[29] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/21.htm'
theUrl[30] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/22.htm'
theUrl[31] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/00-d-king.htm'
theUrl[32] = 'http://www.basketball.qc.ca/cpeq/cuvee0405/masculin/00-d-grimard.htm'

// 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('<a href="javascript:;" onClick="MM_openBrWindow(');
document.write("'"+theUrl[whichImage]);
document.write("','','scrollbars=yes,width=365,height=515')");
document.write('"><img src="images/cartes0405/'+theImages[whichImage]);
document.write('" width="120" height="163" border="0"></a>');
}

//  End -->