	 <!-- Copyright 2002 Bontrager Connection, LLC
	 //
	 // Type the number of images you are rotating.
	
	 NumberOfImagesToRotate = 14;
	
	 // Specify the first and last part of the image tag. 
	
	 FirstPart = '<img src="http://www.du.edu/gspp/display/images/content/photos/leftCol/general/';
	 LastPart = '.jpg" height="196" width="239" />';
	
	 function printImage() {
	 var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
	 document.write(FirstPart + r + LastPart);
	 }
	 //-->

	 <!-- Copyright 2002 Bontrager Connection, LLC
	 //
	 // Type the number of images you are rotating.
	
	 NumberOfImagesToRotateSPP = 13;
	
	 // Specify the first and last part of the image tag. 
	
	 FirstPartSPP = '<img src="http://www.du.edu/gspp/display/images/content/photos/leftCol/spp/';
	 LastPartSPP = '.jpg" height="196" width="239" />';
	
	 function printImageSPP() {
	 var r = Math.ceil(Math.random() * NumberOfImagesToRotateSPP);
	 document.write(FirstPartSPP + r + LastPartSPP);
	 }
	 //-->