
$(function() {

	
	$('#dialog').dialog({
		bgiframe: true,
		resizeable: true,
		height: 400,
		width: 600,
		autoOpen: false,
		modal: true,
		overlay: {
			backgroundColor: '#000',
				opacity: 0.5
		},
		buttons:{
			'Yes, I Agree': function(){
				document.sign_in_vendor.submit();
			},
			'No': function(){
				$(this).dialog('close');
			}
		}
	});
	
	
	$('#sign_in_submit').click(function(){
		$('#dialog').dialog('open');
		return false;
		
	});
	
});
