var msg = {
cMsgY : 277,
cMsgW : 250,
cMsgCaption : objGetText.gettext('Komunikaty'),
cMsgCloseText : objGetText.gettext('Zamknij'),
cShown: false,
cTimeOut : 10000,
showMsg : function() {
	var vTimeOut = 0;
	if(!this.cShown)
	{
		vTimeOut = this.cTimeOut;
		this.cShown = true;
	}
	return overlib(document.getElementById("msgSpan").innerHTML,
			STICKY,
			CAPTION, this.cMsgCaption,
			CLOSECLICK,
			CLOSETEXT, this.cMsgCloseText,
			WIDTH, this.cMsgW,
			RELY, this.cMsgY,
			RELX, document.body.offsetWidth/2-150,
			TIMEOUT, vTimeOut,
			BGCOLOR, '#9ed762',
			FGCOLOR, '#d8fbb3',
			TEXTCOLOR, '#005500',
			CAPCOLOR , '#005500',
			CLOSECOLOR, '#005500'/*
			FGCLASS, 'ol_fg',
			TEXTFONTCLASS, 'ol_text',
			BGCLASS, 'ol_bg',
			CAPTIONFONTCLASS, 'ol_caption',
			CLOSEFONTCLASS, 'ol_close',
			CSSCLASS*/);
},
displayMsg: function(pMessage){
	document.getElementById("msgSpan").innerHTML = pMessage;
	this.cShown = false;
	this.showMsg();
}
};