<!--
function yyywYearChange(strType)
{
	var i = document.getElementById(strType + 'yyywSample');
	var y = document.getElementById(strType + 'yyywYear');
	//replace the relevant parts of the URL with the new year
	var newSRC = i.src.substring(0, i.src.length - 10) + "uk" + y.value + ".jpg";
	i.src = newSRC;
	var u = document.getElementById(strType + "yyywSampleLink");
	u.href=replaceImageNamesInURL(u.href, "uk" + y.value);
}
function showNonImage(strType)
{
	var i = document.getElementById(strType + 'yyywSample');
	//replace the relevant parts of the URL with the new year
	i.src = i.src.substring(0, i.src.length - 10) + "noimag.jpg";
	var u = document.getElementById(strType + "yyywSampleLink");
	u.href=replaceImageNamesInURL(u.href, "noimag");
}
function replaceImageNamesInURL(strURL, strVal)
{
	var newurl = strURL.substring(0, 51) + strVal + strURL.substring(57, strURL.length - 8) + strVal + "')";
	return newurl;
}

//-->
