function open_window(url, name, vyska, sirka,  toolbar, titlebar, scrollbars, menubar, resizable)
{
	var width = new String();
	var height = new String();

	new_window = window.open(url, name, "height=" + vyska + ", width=" + sirka + ", toolbar=" + toolbar + ", titlebar=" + titlebar + ", scrollbars=" + scrollbars + ", menubar=" + menubar + ", resizable=" + resizable);
	new_window.focus();
}