function showAlert(){
	var yesNo = confirm("Most reports take 30-60 seconds to run. The Summary report may take up to 2 minutes. Do you still want to run the report?");
	
	if(yesNo){
		return true;
	}else{
		return false;
	}
	
}