function Icons() {
	if (window.screen) {
		w = screen.width;
		h = screen.height;
	}

	intLeft = (w - 400) / 2;
	intTop = (h - 300) / 3;

	IconWindow = window.open("icons.asp", "IconWindow", "width=400,height=300,left=" + intLeft + ", screenx=" + intLeft + ",top=" + intTop  + ", screeny=" + intTop + ",resizable=no,scrollbars=yes,status=no");

	if (IconWindow.opener == null) IconWindow.opener = window;
	IconWindow.opener.name = "IsteGenc";
	IconWindow.focus();
}
