﻿// JScript File

//Sets the age image for the age search box
function setAgeImage(s) {
	//alert(s);
	var o = document.getElementById("ageSearchDiv");
	o.style.backgroundImage = "url(" + s + ")" ;
	//alert(o.style.backgroundImage);
}

