
function showImage(path, title, href){
	img = window.parent.document.getElementById('detailImg');
	a = window.parent.document.getElementById('detailImgA');
	img.src = path;
	img.alt = title;
	a.href = href;
	
	return false;
}