/*************************************************************************************//**************************************** Delete *************************************//*************************************************************************************//************************************ confirmDelete **********************************/function confirmDelete(contentID,contentName,confirmMessage,locationReplace) {	if(confirmMessage==null) confirmMessage = "Are you sure you want to do this?";	if (confirm(confirmMessage)){		deleteIt(contentID,contentName,locationReplace);	}}	/************************************* delete ***********************************/function deleteIt(contentID,contentName,locationReplace) {	var divID = contentName+'_'+contentID;	document.getElementById(divID).style.display = "none";	new Ajax.Request('http://www.soirepromotions.com/creator.php?ajaxRequest=delete&id='+contentID+'&name='+contentName);	if(locationReplace!=null) location.replace(locationReplace);}
