function newImage(arg) {
	if (document.images) {
		img = new Image();
		img.src = arg;
		return img;
	}
}


function swapImage(obj, file_name) { //2.5 
	obj.src = file_name;
}	