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