function removeProcedure(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete the procedure and all before/after photos from the webserver permanently!");

	if (where_to==true){

		window.location="removeProcedure.php?id="+pId;

	}

}

function removeProcedurePhotos(pId) {

	var where_to= confirm("Are you sure you would like to delete these photos from the database? Clicking 'OK' will delete the photos from the webserver permanently!");

	if (where_to==true){

		window.location="removeProcedurePhotos.php?id="+pId;

	}

}

function removeStaff(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete the staff member from the webserver permanently!");

	if (where_to==true){

		window.location="removeStaff.php?id="+pId;

	}

}

function removeTestimonial(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+"'s testimonial from the database? Clicking 'OK' will delete the testimonial from the webserver permanently!");

	if (where_to==true){

		window.location="removeTestimonial.php?id="+pId;

	}

}

function removeClient(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete this client from the webserver permanently!");

	if (where_to==true){

		window.location="removeClient.php?id="+pId;

	}

}

function removeAppointment(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+"'s appointment from the database? Clicking 'OK' will delete this appointment from the webserver permanently!");

	if (where_to==true){

		window.location="removeAppointment.php?id="+pId;

	}

}

function removeNews(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete the news post from the webserver permanently!");

	if (where_to==true){

		window.location="removeNews.php?id="+pId;

	}

}

function removeStoredImg(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete the image from the webserver permanently!");

	if (where_to==true){

		window.location="removeStoredImg.php?id="+pId;

	}

}

function removeSpecial(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete this special from the webserver permanently!");

	if (where_to==true){

		window.location="removeSpecial.php?id="+pId;

	}

}

function removeEvent(pId, msg) {

	var where_to= confirm("Are you sure you would like to delete "+msg+" from the database? Clicking 'OK' will delete this event from the webserver permanently!");

	if (where_to==true){

		window.location="removeEvent.php?id="+pId;

	}

}
