function help(url) {
	popup = window.open(url,'helpwindow','status=no,toolbar=yes,scrollbars=yes,resizable=yes,width=500,height=500,top=0,left=0');
	if (popup.focus) popup.focus();
	if (popup.GetAttention) popup.GetAttention();
	return false;
}				

var oldCellColor = "#000";
function focusRow(row) {
	var cells = row.cells;
	if (!cells) return;
	oldCellColor = cells[0].style.backgroundColor;
	for (var i=0;i<cells.length;i++) {
		cells[i].style.backgroundColor='whitesmoke';
	}
}
function blurRow(row) {
	var cells = row.cells;
	if (!cells) return;
	for (var i=0;i<cells.length;i++) {
		cells[i].style.backgroundColor=oldCellColor;
	}
}
function batchSelectAll(what) {
	var i = 0;
	var el;
	while (el = document.getElementById('batch' + i)) {
		el.checked = what?'checked':'';
		i++;
	}
	return false;					
}

function menu(top,sub){
	alert('wert');
	document.write('<tr><td height="17" align="right" width="63" style="padding-right:12px;" class="TrafficTickerBmi"><a class="BlogBlack10" href="index.php?action=blogsettingsbasic&blogid=<%blogid%>" >Allgemein</a></td><td width=1px></td><td width="70px" align="center" class="BlogForumMessageHeaderTitle"><a href="index.php?action=blogsettingscomments&blogid=<%blogid%>" class="BlogWhite10">Kommentare</a></td><td width=1px></td><td width=70 align="center" class="BlogForumMessageHeaderTitle"><a href="index.php?action=manageteam&blogid=<%blogid%>" class="BlogWhite10" >Mitglieder</a></td><td align="right" style="padding-right:14px;" class="ForumMessageHeaderTitle"><a href="index.php?action=blogsettingshelp&blogid=<%blogid%>" class="BlogWhite10" >Help</a></td></tr>');
}

