function shown(){
//	$('#quant_dialog').dialog('open');
	if($.cookie('form-secure')){
		//Nothing
	}
	else {
//		alert('Create NEW Cookie');
		$.cookie('form-secure', 'b086a4597f03ff08aeac08d29467842a', { expires: 360 });
		$('#quant_dialog').dialog('open');
//		$('div.ui-dialog-buttonpane').('#dialog').html('<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text"></span></button><p>All new content. <em>You bet!</em></p>')
		$('div.ui-dialog-buttonpane').after(
				'<div style="padding: 20px;" class="ui-footer"><p style="text-align: center;">You will only see this message once.</p></div>');
	}
}

$(document).ready(function(){
	$('#quant_dialog').show();
    
$('#quant_dialog').dialog({
            autoOpen: false,
            width: 600,
            modal: true,
            resizable: false,
            closeOnEscape: true,
            draggable: false,
            buttons: {
                "": function() {					
				$('#form-secure').submit();					
                }                
            },
            close: function() {
            //if dlg closed  
            }
        });        
 setTimeout( 'shown()', 30000 );
});