function addPageToPdfReport(pageName, pageID)
{
	msg = "Are you sure you want to ADD this page to the report?";
	//all we have to do is return the return value of the confirm() method
  
	if (confirm(msg) == true)
	{
		$.ajax({
		  url: "../../report_center_functions.cfm",
		  cache: false,
		  type: "POST",
		  data: ({action : "add", page : pageID }),
		  dataType: "html",
		  async: false,
		  success: function(data) {
				$("#creatorText").html(data);
				$('#creatorText').slideToggle("slow").delay(5000).slideToggle("slow");
				$("#addToReportLink").css("display", "none");
				$("#creator").css("width", "300px");
		  }
		});
	}
}
