	function enlarge_image(page_name) {
		page = window.open('','Win','toolbar=no,status=no,resizable=no,width=550,height=400');
		page.document.write("<html><head><title></title></head><body bgcolor='#F3FFFF'><table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0' align='center'><tr><td align='center' valign='middle'><img src='images/" + page_name + ".jpg' alt='Click to CLOSE' onClick='window.close();'></td></tr></table></body></html>");
		page.document.close();
		page.focus();
	}