function detailImage(content) {

	var foreground1= document.getElementById('detailimage1');
	foreground1.style.display = "block";
	
	var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
	if (IE6) {
		foreground1.style.top = document.documentElement.scrollTop + 10 + "px";
	}
	var background= document.getElementById('container');
	background.style.opacity = "0.1";
	background.style.filter = 'alpha(opacity=10)';

	document.getElementById('detailimage1').innerHTML = "<a href=javascript:detailImageOff()><img src="+content+" border=0></a><br/>Click image to go back"	
}

function detailImageOff() {

	var foreground1= document.getElementById('detailimage1');
	foreground1.style.display = "none";

	var background= document.getElementById('container');
	background.style.opacity = "1.00";
	background.style.filter = 'alpha(opacity=100)';

	document.getElementById('detailimage1').innerHTML = ''	
}