
function resimac(target)
	{
	 i1 = new Image;
	 i1.src = target;
	 html = '<html><head><title>Kapatmak İçin Resime Tıklayın...</title></head><body style="margin-left:0px;margin-top:0px;" ><a href="javascript:window.close()"><img onload="window.resizeTo(document.imageTest.width+10,document.imageTest.height+60);window.moveTo(((screen.availWidth/2)-(document.imageTest.width/2)), ((screen.availHeight/2)-((document.imageTest.height)/2)));" src="'+target+'" border="0" name="imageTest" alt="Kapatmak İçin Resime Tıklayın..." /></a></body></html>';
popupImage = window.open(target,'_blank','width=420,height=284,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	 popupImage.document.open();
	 popupImage.document.write(html);
	 popupImage.document.close()
	};

function rsac(src){

a=src.replace('/k/','/b/');
resimac(a);
}



