﻿
function resmiBuyut(imgUrl)
{
    winId = window.open('','newwin','width=800,height=600');
    winId.document.write('<body onLoad="if (window.focus) window.focus()"><center>');
    winId.document.write('<img style="width:800; height:600;" src="' + imgUrl + '">');
    winId.document.write('</center></body>');
    winId.document.close();

}
