$(document).ready(function() {
	$(function() {
        $("#dlg-agree-to-terms").dialog({
            bgiframe: true,
            modal: true,
            autoOpen: false,
            buttons: {
                Ok: function() {
                    $(this).dialog('close');
                }
            }
        });
	});
	$(function() {
        $("#dlg-verification-code").dialog({
            bgiframe: true,
            modal: true,
            autoOpen: false,
            buttons: {
                Ok: function() {
                    $(this).dialog('close');
                }
            }
        });
	});
	$(function() {
        $("#dlg-image-error").dialog({
            bgiframe: true,
            modal: true,
            autoOpen: false,
            buttons: {
                Ok: function() {
                    $(this).dialog('close');
                }
            }
        });
	});
});


