
function deleteCategory(id)
{
	if (confirm("If you delete this Formata, all their Events and Images will be deleted too.\n\rAre you sure that you want delete this Formata?"))
	{
		document.location='?del='+id;
	}
}

function deleteEvent(f,id)
{
	if (confirm("If you delete this Event, all their Images will be deleted too.\n\rAre you sure that you want delete this Event?"))
	{
        document.location='nights?f='+f+'&del='+id;
	}
}

function deleteImage(f,n,id)
{
	if (confirm("Are you sure that you want delete this Image?"))
	{
		document.location='image?f='+f+'&n='+n+'&i='+id+'&delete=true"';
	}
}
