function removePage(pID)
{
  	var answer = confirm ("Are you sure you wish to delete this page?")
	if(answer)
	{
		document.location = ("deletePage.php?id="+pID); 
  	}

}

function removeMember(mID)
{
  	var answer = confirm ("Are you sure you wish to delete this member?")
	if(answer)
	{
		document.location = ("deleteMember.php?id="+mID); 
  	}

}

function removeNews(nID)
{
  	var answer = confirm ("Are you sure you wish to delete this news story?")
	if(answer)
	{
		document.location = ("deleteNews.php?id="+nID); 
  	}

}

function removeMemberCategory(nID)
{
  	var answer = confirm ("Are you sure you wish to delete this category?")
	if(answer)
	{
		document.location = ("deleteMemberCategory.php?id="+nID); 
  	}

}

function removeNewsCategory(nID)
{
  	var answer = confirm ("Are you sure you wish to delete this category?")
	if(answer)
	{
		document.location = ("deleteNewsCategory.php?id="+nID); 
  	}

}

function removeLink(nID)
{
  	var answer = confirm ("Are you sure you wish to delete this link?")
	if(answer)
	{
		document.location = ("deleteLink.php?id="+nID); 
  	}

}

function removeEvent(nID)
{
  	var answer = confirm ("Are you sure you wish to delete this event?")
	if(answer)
	{
		document.location = ("deleteEvent.php?id="+nID); 
  	}

}
