function setPointer(theRow, thePointerColor)
{
	if (thePointerColor == '' || typeof(theRow.style) == 'undefined') {
		return false;
	}
	if (typeof(document.getElementsByTagName) != 'undefined') {
		var theCells = theRow.getElementsByTagName('td');
	}
	else if (typeof(theRow.cells) != 'undefined') {
		var theCells = theRow.cells;
	}
	else {
		return false;
	}
	
	var rowCellsCnt  = theCells.length;
	for (var c = 0; c < rowCellsCnt; c++) {
		theCells[c].style.backgroundColor = thePointerColor;
	}
	
	return true;
}

function setPointerTD(theCell, thePointerColor)
{
	if (thePointerColor == '' || typeof(theCell.style) == 'undefined') {
		return false;
	}
	theCell.style.backgroundColor = thePointerColor;
	return true;
}
function openWindow(url, width, height, scrollbars) {
 var Win=window.open(url,"ToDo",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=' + scrollbars + ',menubar=no' );
 Win.moveTo(10,10);
 Win.resizeTo(width,height);
 Win.focus();
}

function showOrHide(elementslist)
{
	var elements_array = elementslist.split(" ");
	var part_num = 0;
	while (part_num < elements_array.length)
	{
		var elementid = elements_array[part_num];
		if(document.getElementById(elementid).style.display != 'none')
		{
			document.getElementById(elementid).style.display = 'none';
			//setCookie(elementid, '0');
		}
		else
		{
			document.getElementById(elementid).style.display = '';
			//setCookie(elementid, '1');
		}
		part_num += 1;
	}
	$(document).ready(function() {
			alert("bbb");
			$('#panel_klienta span#panel a').click(function() {
				alert("aaa");
				$('#panel_klienta span#panel a').toggleClass('aaaa');
				$('#userpanel').slideToggle("fast");
				return false;
				});
			});
}

