var Order = function(){
	return { 
	
			showAlternatePaymentPopup : function(btn1_callback,btn2_callback){
						if (typeof btn1_callback == 'undefined'){
							btn1_callback = '';
						}
						if (typeof btn2_callback == 'undefined'){
							btn2_callback = '';
						}
				
						var data = {
							msg_title:'3rd Party Checkout Notice',
							loader_class:'inline_loader',
							html:'<div>' +
									'Third party payment methods are not instantly fulfilled, ' +
											'and may take aslong as 12 hours to complete. ' +
											'This delay is beyond our control, and, ' +
											'you\'re encouraged to pay us directly' +
											'with credit card for fastest service.' +
								'</div>',
							buttons:[
									{onclick:btn1_callback,value:'Use Direct Credit Card','class':'white'},
									{onclick:btn2_callback,value:'Continue','class':'yellow'}
								]
						}
						Goingup.Dialog.Show(data);	
						
					}

	}
}();