function change_product_image(img_id,img_src, width, height) {
	document.getElementById(img_id).src = img_src;
	document.getElementById(img_id).width = width;
	document.getElementById(img_id).height = height;
}
