﻿var sureprompt = {
    clear: function() {
        document.getElementById('sureprompt_yes').href = '';
	    popup.hide('sureprompt');
    },
    
    show: function(message,href) {
        document.getElementById('sureprompt_yes').href = href;
	    document.getElementById('sureprompt_text').innerHTML = message;
	
	    popup.show('sureprompt',true);
    }

};