function newWindow(win,opener) {	win = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=400,height=500');	win.focus();	}	function pdfWindow(win,opener) {	win = window.open(opener,'popup','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=800,height=500');	win.focus();	}	function updateParent(newURL) {	opener.document.location = newURL	window.close()	}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 + ".gif"		}	imgCount = q;	thisFrame = 0;	rotate()	}
