today=new Date();
		y0=today.getFullYear();
		
		function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
		thefield.value = ""
		} 
		
		
		
		var theImages = new Array()

theImages[0] = '/images/cartoons/Purvesweb_cartoon_001.png'
theImages[1] = '/images/cartoons/Purvesweb_cartoon_002.png'
theImages[2] = '/images/cartoons/Purvesweb_cartoon_003.png'
theImages[3] = '/images/cartoons/Purvesweb_cartoon_004.png'
theImages[4] = '/images/cartoons/Purvesweb_cartoon_005.png'
theImages[5] = '/images/cartoons/Purvesweb_cartoon_006.png'
theImages[6] = '/images/cartoons/Purvesweb_cartoon_007.png'
theImages[7] = '/images/cartoons/Purvesweb_cartoon_008.png'
theImages[8] = '/images/cartoons/Purvesweb_cartoon_009.png'
theImages[9] = '/images/cartoons/Purvesweb_cartoon_010.png'
theImages[10] = '/images/cartoons/Purvesweb_cartoon_011.png'
theImages[11] = '/images/cartoons/Purvesweb_cartoon_012.png'
theImages[12] = '/images/cartoons/Purvesweb_cartoon_013.png'
theImages[13] = '/images/cartoons/Purvesweb_cartoon_014.png'
theImages[14] = '/images/cartoons/Purvesweb_cartoon_015.png'
theImages[15] = '/images/cartoons/Purvesweb_cartoon_016.png'
theImages[16] = '/images/cartoons/Purvesweb_cartoon_017.png'
theImages[17] = '/images/cartoons/Purvesweb_cartoon_018.png'
theImages[18] = '/images/cartoons/Purvesweb_cartoon_019.png'
theImages[19] = '/images/cartoons/Purvesweb_cartoon_020.png'


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 src="'+theImages[whichImage]+'">');
}
