
function resimac(target)
	{
	 i1 = new Image;
	 i1.src = target;
	 html = '<HTML><HEAD><TITLE>Kapatmak &#304;çin Resime T&#305;klay&#305;n...</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 RIGHTMARGIN=0 BOTTOMMARGIN=0><a href="javascript:window.close()"><IMG SRC="'+target+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+6,document.imageTest.height+55);window.moveTo(((screen.availWidth/2)-(document.imageTest.width/2)), ((screen.availHeight/2)-(document.imageTest.height/2)));"></a></BODY></HTML>';
popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	 popupImage.document.open();
	 popupImage.document.write(html);
	 popupImage.document.close()
	};