// JavaScript Document
function img_swap(obj, img)
{
	if (obj != null)
		obj.src = img;

}
