﻿function ac(res,w,h) {
	leftPos = 0
	topPos = 0
	if (screen) {
		leftPos = (screen.width / 2) - (w / 2)
		topPos = (screen.height / 2) - (h / 2)
	}
	nw = window.open("","nw","width="+w+",height="+h+",scrollbars=no,left="+leftPos+",top="+topPos);
	nw.document.open();
	nw.document.write('<html><title>Ekran Görüntüsü</title><body style=margin:0;background-color:#343642 onClick="window.close()">'); 
	nw.document.write('<table style=width:100%;height:100%><tr><td style=text-align:center><img src=http://static.zolaks.com/'+res+'>'); 	
	nw.document.write('</td></tr></table></body></html>');
	nw.document.close();
	nw.focus();
}

function rsmdegistir() {
	document.getElementById('imgb').src='http://static.zolaks.com/images/b'+(Math.round(3*Math.random())+1)+'.jpg'
}