<!--
function fncConfirmDeleteEvent(eventname)
	{
	var agree=confirm('Are you sure you want to delete the "'+eventname+'" event?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function fncConfirmDeletePage(pagetitle)
	{
	var agree=confirm('Are you sure you want to delete the "'+pagetitle+'" page?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function fncConfirmDeleteJob(jobname)
	{
	var agree=confirm('Are you sure you want to delete the job "'+jobname+'"?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function fncConfirmDeleteProject(projectname)
	{
	var agree=confirm('Are you sure you want to delete the project "'+projectname+'"?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function fncConfirmDeleteUser(username)
	{
	var agree=confirm('Are you sure you want to delete the user "'+username+'"?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function fncJobInfo(jobid) {
	infoWin = window.open('join_info_popup.asp?id='+jobid,'',config='width=550,height=625,scrollbars,noresize');
	self.name = "joinWin";
	}
-->