//вывод изображений в отдельном окне
var new_wind;
function show_img(url,width,height)
{
	if (clos()) new_wind.close(); //если окно закрыто - открываем, открыто - закрываем
	var ext_prop = "resizable=no, width=" + width + ",height=" + height + ",left=" + (  Math.ceil(((screen.width-width)-5)/2) ) + ",top=" + (  Math.ceil(((screen.height-height)-50)/2) );
	new_wind = window.open(url,"image_window",ext_prop);
}

function clos()
{
	if (!new_wind) return false;
	if (new_wind.closed) return false;
	else return true;
}
