// ----------------------------------------------------------------------------
function newWindowModal(p_url, p_name, p_width, p_height) {
	window.showModalDialog(p_url, "", "dialogWidth:" + p_width + "px;dialogHeight:" + p_height + "px") 
};
// ----------------------------------------------------------------------------
function newWindowModalStandard(p_url, p_name) {
	newWindowModal(p_url, p_name, 750, 500);
};
// ----------------------------------------------------------------------------
var popup;

function newWindowCenter(p_url, p_name, p_width, p_height) {
//	var popup;
	if (popup) {
		popup.close();
	}
	gora=(screen.height-p_height)/2 / 2;
	lewo=(screen.width-p_width)/2 / 2 ;
	var parameters = "toolbar=no,menubar=no,scrollbars=yes, resizable=yes,status=yes,location=no,directories=no,top="+gora+",left="+lewo+",height="+p_height+",width="+p_width;
	popup = window.open(p_url, p_name, parameters);
	popup.focus();
};
// ----------------------------------------------------------------------------
function closeChild(p_reload) {
	if (p_reload) {
		window.opener.location.reload();
	}
	window.opener.focus();
	window.close();
};

// ----------------------------------------------------------------------------
function init(p_initFunction) {
	// setup event handlers
	document.body.onkeypress = p_initFunction;// p_initFunction;
};
// ----------------------------------------------------------------------------
