function popupK (link, title, params)
{
	var w = window.open(link, title, params);
	if (w !== null) {
	w.moveTo((screen.width - 812)/2,(screen.height - 562)/2);
	w.focus();
	}
}