function deleteNews(Id)
{
	if (confirm('Delete this item?')) {
		window.location.href = 'news.php?page=news-add&deleteNews&Id=' + Id;
	}
}

function deleteCoverimage(Id)
{
	if (confirm('Delete this item?')) {
		window.location.href = 'coverimages.php?page=coverimages-add&deleteCoverimage&Id=' + Id;
	}
}

function deleteCollection(Id)
{
	if (confirm('Delete this item?')) {
		window.location.href = 'collections.php?page=collections-add&deleteCollection&Id=' + Id;
	}
}

function deleteCollectionImage(Id, imgId) 
{
	if (confirm('Delete this item?')) {
		window.location.href = 'collections.php?page=collections-edit&deleteCollectionImage&Id=' + Id + '&imgId=' + imgId;
	}
}

function deleteStockist(Id)
{
	if (confirm('Delete this item?')) {
		window.location.href = 'stockists.php?page=stockists-add&deleteStockist&Id=' + Id;
	}
}

function deleteExhibition(Id)
{
	if (confirm('Delete this item?')) {
		window.location.href = 'exhibitions.php?page=exhibitions-add&deleteExhibition&Id=' + Id;
	}
}

function deleteExhibitionImage(Id, imgId) 
{
	if (confirm('Delete this item?')) {
		window.location.href = 'exhibitions.php?page=exhibitions-edit&deleteExhibitionImage&Id=' + Id + '&imgId=' + imgId;
	}
}
