// (c) 2002 - 2003 Tom Dolezal
// require: IE5+
// version: 1.01
// updated: 25.1.2003 18:22

// nove okno
function win(url, width, height)
{
	if (!width)
		width = 300;
	if (!height)
		width = 200;
	
	if (document.all)
	{
		var x = Math.round(window.screen.availWidth / 2 - width / 2);
		var y = Math.round(window.screen.availHeight / 2 - height / 2);
		if (x < 0) x = 10;
		if (y < 0) y = 10;
	}
	else
		var x = 200, y = 200;

	var features = 'height='+height+', left='+x+', location=no, menubar=no, '
		+'resizable=yes, scrollbars=yes, status=no, titlebar=no, toolbar=no, top='+y+', width='+width;
	window.open(url, '_blank', features);
}

