﻿function obrazek(nazwa,wymiar1,wymiar2)
{
	center1=screen.width/2 - wymiar1/2;
	center2=screen.height/2 - wymiar2/2;
	okno=window.open("", "", "height="+wymiar2+",width="+wymiar1+", left="+center1+",top="+center2);
	okno.document.open();
	okno.document.write("<html>\n<head>\n<title>www.construktor.com</title>\n</head>\n<body style=\"margin:0px\">\n<a style=\"text-decoration: none\" href=javascript:window.close()><img style=\"border: 0px\" src="+nazwa+" height="+wymiar2+",width="+wymiar1+"></a>\n</body>\n</html>");
	okno.document.close();
}
