function okno_mapa(width,height,title,path)
{

    if (width < 800) w = width; else w = '800';
    if (height < 600) h = height; else h = '600';

	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;

	var scroll = '';

    param = 'path='+path+'&title='+title;

    if ((width >= 800) || (height >= 600)) scroll = 'yes'; else scroll = 'no';


	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresizable'

	//alert(winprops);

	win = window.open('ukaz_mapu.php?'+param, 'Image', winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }

}

