function displayResults() {
		var avgFlt = parseFloat(results["avg"]);
		var imgBase = "/style/gadget_alert/imx/rabbit";
		var imgNum;
		var imgEnd = ".gif";
		if (avgFlt >= 0 && avgFlt <= .74) {
			imgNum = "0.5";
		} else if (avgFlt > .74 && avgFlt <= 1.24) {
			imgNum = "1.0";
		} else if (avgFlt > 1.24 && avgFlt <= 1.74) {
			imgNum = "1.5";
		} else if (avgFlt > 1.74 && avgFlt <= 2.24) {
			imgNum = "2.0";
		} else if (avgFlt > 2.24 && avgFlt <= 2.74) {
			imgNum = "2.5";
		} else if (avgFlt > 2.74 && avgFlt <= 3.24) {
                        imgNum = "3.0";
                } else if (avgFlt > 3.24 && avgFlt <= 3.74) {
                        imgNum = "3.5";
                } else if (avgFlt > 3.74 && avgFlt <= 4) {
			imgNum = "4.0";
		} else {
			imgNum = "0.0";
		}

		var targetElt = document.getElementById("results_display");
		var resultString = '<div style="background: #fff; text-decoration: none; text-align: center; font: 10px/14px verdana, sans-serif; padding: 0px 10px 0px 10px; color: #000;">';
		resultString = resultString + '<div style="text-align: center;"><img src="' + imgBase + imgNum + imgEnd + '" alt="Are You Playboy Material" width="105" height="34" border="0" /><br /></div>';
		resultString = resultString + '<b>Average for this photo from ';
		resultString = resultString + '' + results["num"] + '';
		resultString = resultString + ' submissions</div>';

		targetElt.innerHTML = resultString;
	}

	displayHandler = displayResults;