function QuickClick(sermon_id) {
                    var result = confirm('QUICKCLICK CONFIRMATION: \nPlease click OK to confirm your purchase request.\n\nPlease note a popup window will be temporarily opened to process your request. \n\n PLEASE NOTE: The purchase authorization could take up to a minute, please do not "Quick Click" more than once; this will ensure you will not be charged more than once.');
                        
                        if(result){
                            window.open ("https://www.sermonslides.com/?page=quickclick&sermon_id=" + sermon_id, "processing", 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizeable=no, scrollbars=no, width=580, height=450');
                      
                        }
                        else { 
                            alert("QuickClick Aborted. Nothing was puchased.");
                        }
                }