function show_image(name, url)
{
	var obj = document.images[name];
	if (obj)
		obj.src = url;
}