﻿function enlarge(image, width, height){
	image.style.position = "absolute";
	image.width = width;
	image.height = height; 
}
function reduce(image, width, height){
	image.style.position = "relative";
	image.width = width;
	image.height = height;
}