function show_large_image(image_file){
	div1 = document.getElementById('product_darken');
	div1.style.display = "block";
	div2 = document.getElementById('show_image_div2');
	div2.style.display = "block";
	
	div2.innerHTML = '<img src="' + image_file + '" style="border:3px solid #515058;background-color:#FFFFFF;padding:4px;" />';


}

function reset_large_image(){// FUNCTION 221

	div1 = document.getElementById('product_darken');
	div1.style.display = "none";
	div2 = document.getElementById('show_image_div2');
	div2.style.display = "none";

}// FUNCTION 221
