

function cancelAction()
    {
	document.forms['frmCancelForm'].submit();
    }

function areYouSure(theMessage)
	{
	return confirm(theMessage);
	}

function gotoAction(theLink)
	{
	document.forms['frmGoToForm'].action=theLink;
	document.forms['frmGoToForm'].submit();
	}