function smallWindow(thisWindow,opener) {	thisWindow = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=600,height=203');	thisWindow.focus();	}function rotate() {		if (document.images)		{		thisFrame++		if (thisFrame == imgCount)			{			thisFrame = 0			}		document.imgSlide.src=frameImages[thisFrame]		setTimeout("rotate()",2 * 2000)		}	}function slideShow(img,q) {	frameImages = new Array(q);	for(c=0; c<q; c++) {		frameImages[c] = "images/" + img + c + ".jpg"		}	imgCount = q;	thisFrame = 0;	rotate()	}