function dotazDeleteServer(link) {
    dd = window.confirm("Opravdu chcete smazat tento server? Smazáním serveru dojde ke smazání kampaní tohoto serveru.");
	if (dd) { document.location.href=link; }
}
function dotazDeleteKampan(link) {
	dd = window.confirm("Opravdu chcete smazat tuto kampan?");
	if (dd) { document.location.href=link; }
}
function setRowBackground(theRow, thePointerColor) {
	var agt=navigator.userAgent.toLowerCase();
	var is_opera = (agt.indexOf("opera") != -1);
	if (!is_opera) {
		if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
			return false;
		}
		var row_cells_cnt = theRow.cells.length;
		for (var c = 0; c < row_cells_cnt; c++) {
			theRow.cells[c].bgColor = thePointerColor;
		}
	}
	return true;
}

