﻿function okno (url, width, height) 
{
	var Win = window.open("blank.php", "Eclipse", 'width=' + width + ', height=' + height + ', resizable=0, scrollbars=never, menubar=no' );
	Win.document.write('<HTML><HEAD><TITLE>Eclipse</TITLE></HEAD>');
	Win.document.write('<BODY topmargin=0 leftmargin=0 bgcolor="#ffffff">');
	Win.document.write('<center><a href="javascript:window.close();"><img src="' + url + '"></a></center>');
	Win.document.write('</body>');
	Win.document.close();
	Win.focus();
}


