function showImage(imageURL, imageAltTag, windowName, windowTitle, width, height)
{
	newWindow=window.open(imageURL,'windowName','width='+width+',height='+height+',toolbar=no,,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no');
	newWindow.document.write('<html><title>'+windowTitle+'<\/title><head><\/head><body style="margin:0;"><img src="'+imageURL+'" alt="'+imageAltTag+'"><\/body><\/html>');
	newWindow.focus();
}

function gotoGroup()
{
	var group_username = document.getElementById("select-group").value;
	if (group_username.length > 0)
		window.location = '/'+group_username;
}

function expandAll(xlen, view)
{
	// expand or hide all groups on the group management admin page
	for(i = 0; i < xlen; i++)
		document.getElementById("uni" + i).style.display = view;
}
