<!--// Enter the names of the picture files you want in your gallery into the fileNames arrayvar fileNames = new Array("cpcarts/1.jpg","cpcarts/2.jpg","cpcarts/3.jpg","cpcarts/4.jpg","cpcarts/5.jpg","cpcarts/6.jpg","cpcarts/7.jpg","cpcarts/8.jpg","cpcarts/9.jpg","cpcarts/10.jpg","cpcarts/11.jpg","cpcarts/12.jpg","cpcarts/13.jpg","cpcarts/14.jpg","cpcarts/15.jpg","cpcarts/16.jpg","cpcarts/17.jpg","cpcarts/18.jpg","cpcarts/19.jpg","cpcarts/20.jpg","cpcarts/21.jpg", "cpcarts/22.jpg", "cpcarts/23.jpg", "cpcarts/24.jpg");var maxHeight = 150; // Enter the height (in pixels) of the "tallest" picture in the gallery (can be greater, but not less than, height of tallest picture)var maxWidth =450; // Enter the width (in pixels) of the widest picture in the gallery (can be greater, but not less than, width of widest picture)var backLocation = "index.shtml"; // Enter the url of the page that the "Back" link is to point to/**********************************************************************************************DO NOT EDIT BEYOND THIS POINT!Please do not re-use this script/page template without the following:Written by:Michael Rieppel, January 2005morieppel2*at*yahoo.comhttp://www.geocities.com/morieppel2/index.shtml***********************************************************************************************/var nowPic = 0;function placeFirst() {	document.getElementById('picTab').style.height = maxHeight.toString() + "px";	document.getElementById('picTab').style.width = maxWidth.toString() + "px";	document.getElementById('picNum').innerHTML = (nowPic+1);	document.getElementById('mainpic').src = fileNames[0];}function next() {	nowPic++;	if(nowPic>=fileNames.length) {		nowPic = 0;		}	document.getElementById('mainpic').src = fileNames[nowPic];	document.getElementById('picNum').innerHTML = (nowPic+1);}function previous() {	nowPic--;	if(nowPic < 0) {		nowPic = (fileNames.length - 1);		}	document.getElementById('mainpic').src = fileNames[nowPic];	document.getElementById('picNum').innerHTML = (nowPic+1);}function goPic() {	nowPic = (document.getElementById('index').value - 1);	if(nowPic>=fileNames.length) {		nowPic = (fileNames.length - 1);		}	if(nowPic < 0) {			nowPic = 0;			}	document.getElementById('mainpic').src = fileNames[nowPic];	document.getElementById('picNum').innerHTML = (nowPic+1);}function goBack() {	document.location.replace(backLocation);}function MM_jumpMenu(targ,selObj,restore){ //v3.0  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");  if (restore) selObj.selectedIndex=0;}//-->