function popup(loc) {
	var width = (screen.width)*.6, height = (screen.height)*.6;
	y = (screen.height)?((screen.height-height)/2-100):100;
	x = (screen.width)?(screen.width-width)/2-100:100;
	params = 'width='+width+',height='+height+',top='+y+',left='+x+',screenX='+x+',screenY='+y+',menubar=0,scrollbars=1,toolbar=1,resizable=1,status=0,help=0,';
	newWin = window.open(loc,'Popup',params);
	newWin.focus();
}

function DoAction(action, mode)
{
	document.frmDoAction.action.value = action;
	document.frmDoAction.mode.value = mode;
	document.frmDoAction.submit();
}
function DoProjectAction(action, mode)
{
	document.frmDoProjectAction.action.value = action;
	document.frmDoProjectAction.mode.value = mode;
	document.frmDoProjectAction.submit();
}

