function deleteMe(creatorID,type,articleID)
{

if (type == 'news'){
	var string = "Really Delete NEWS ID: " + articleID;
}

if (type == 'reply'){
	var string = "Really Delete REPLY ID: " + articleID;
}

if (type == 'poll'){
	var string = "Really Delete POLL ID: " + articleID;
}

var x=confirm(string)

	if (type == 'news'){
	
		if (x){
			window.location = "http://www.thepffl.com/updates/viewNews.php?action=delete&article=news&creatorID=" + creatorID + "&id=" + articleID;
		} else {
			window.location = "http://www.thepffl.com/updates/viewNews.php"
		}
		
	} else if (type == 'reply'){

		if (x){
			window.location = "http://www.thepffl.com/updates/viewNews.php?action=delete&article=reply&creatorID=" + creatorID + "&id=" + articleID;
		} else {
			window.location = "http://www.thepffl.com/updates/viewNews.php"
		}

	} else if (type == 'poll'){

		if (x){
			window.location = "http://www.thepffl.com/accounts/newpoll.php?action=delete&id=" + articleID;
		} else {
			window.location = "http://www.thepffl.com/accounts/newPoll.php?action=edit&pollID=all"
		}

	}
}
