$(document).ready(function() {
	$( "#dialog-modal" ).dialog({
			autoOpen: false,
			height: 500,
			width: 640,
			modal: true			
	});
	
	
	$(".form-pasarela").submit(function(){
		$( "#dialog-modal" ).dialog( "open" );
		
		formulariopago = this				
		
		return false;
	});

    
    
});     

