function doTableRowRollover(tableRow) {
	var tds = tableRow.childNodes;
	for (i = 0; i < tds.length; i++) {
		tds[i].style.backgroundColor = '#FF6600';
		tds[i].style.color = '#FFFFFF';
		tds[i].style.cursor = 'hand';
	}
	
}

function undoTableRowRollover(tableRow) {
	var tds = tableRow.childNodes;
	for (i = 0; i < tds.length; i++) {
		tds[i].style.backgroundColor = '#FBFCF6';
		tds[i].style.color = '#45400B';
		
		//if (tds[i].className == 'oznacenieBytu')
		//	tds[i].style.color = '#FF6600';
	}
}

function downloadPdf(pdfName) {
	window.open('/uploads/tx_bibakaskadybyty/' + pdfName, '', 'width=800,height=600,menubar=no,location=no,resizable=yes,scrollbars=yes,status=yes');
}

function openPic(url,winName,winParams)	{	
	var theWindow = window.open(url,winName,winParams);
	if (theWindow)	{theWindow.focus();}
}
