// JavaScript Document
function imgwin(img,w,h){
	win1=window.open("","win","width="+w+",height="+h);
	with(win1.document){
		write("<html><head><title>Š”Ž®‰ïŽÐâL‰· PIT SEVEN</title></head>");
		write("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
		write("<a href='JavaScript:void(0)' onClick='window.close()'><img src='"+img+"' border=0></a>");
		write("</body></head>");
		close();
	}
}