	function ChangePicture(strID, width){
		if (strID!=0){
			var strInnerHTML = "";
			strInnerHTML += "<div class=\"photoTitle\"><a href=\"http:\/\/www.cafepress.com/globalpeacelove/" + strID + "\" target=\"_blank\">Buy apparel &amp; items&rarr;</a></div>" ;
			strInnerHTML += "<hr>";
			strInnerHTML += "<img src=\"/images/designs/" + strID + ".jpg\" width=\"" + width + "\" />";
			document.getElementById("photoSpot").innerHTML = strInnerHTML;
			photoSpotChanged = true;
		}
		else{
			if (photoSpotChanged){
				document.getElementById("photoSpot").innerHTML = origPhotoSpot;
				photoSpotChanged = false;
			}
		}
		location.href="#jumpHere";
	}