function getobj(mtxt){
	if(document.getElementById){
		m=document.getElementById(mtxt);
	}else if(document.all){
		m=document.all[mtxt]
	}
	return m
}

function chImg2(img_id, file_id)
{
	var obj = getobj('catimg_'+img_id);
	if (obj)
		obj.src = file_id;	
}