function confirmAction(action){
	if ( confirm('Are you sure you want to ' + action + ' it?') ){
		return true;
		}
	else {
		return false;
		}
	}

function checkSelection(ctl){
	if(ctl.value){
		return true;
		}
	else {
		alert("Please select an item");
		return false;
		}
	}

function openUserList( sess_id, lid ){
	nw = window.open('', 'newWin', 'scrollbars=yes,status=no,menubar=no,location=no,resizable=yes,width=510,height=300');
	nw.document.write("<HTML><BODY><FORM NAME='mwForm' METHOD='POST'>");
	nw.document.write("<INPUT TYPE='hidden' NAME='sid' VALUE='" + sess_id + "'>");
	nw.document.write("<INPUT TYPE='hidden' NAME='lid' VALUE='" + lid + "'>");
	nw.document.write("<INPUT TYPE='hidden' NAME='page' VALUE='selectuser'>");
	nw.document.write("</FORM></BODY></HTML>");
	nw.document.mwForm.submit();
	}