		<!--
function oknoshow(url, width, height) {
        var Win = window.open(url,"displayWindow2",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
}

function oknoshowa(url, width, height) {
        var Win = window.open(url,"displayWindow3",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=yes' );
}

var was_resize;
was_resize = false;		 
function popup() 
{
	if (document.images.grafika.complete && !was_resize) 
	{
	was_resize=true;	
	window.resizeTo(document.grafika.width+30,document.grafika.height+60);
	}
	else 
	{
	setTimeout('popup()', 500);
	}	
}

//-->
