

//==================================================
//
//
//==================================================
function CmsConfirm(message, evt)
{
	var bIsOk = confirm(message);
	
	if(evt) evt.returnValue = bIsOk;
		
	return bIsOk;
	
}

//==================================================
//
//
//==================================================
function CmsDeleteConfirm(evt)
{
	return CmsConfirm("You are about to delete this entry. Are-you sure you want to continue?", evt);
}
