function replaceImage(img) {
    if (img.width == '1' && img.src.match(/\.01\./)) {
	img.src = 'no_image.THUMBZZZ.jpg';
    } else if (img.width == '1') {
	img.src = img.src.replace('.09.','.01.');
    }
}

