//
//
//
function cms_loading( obj )
{

	$( obj ).html('<div class="msgAlert">Carregando...</div>');

}

//
// Confirma
//
function cms_confirma( msg, url )
{
	
	/*if( confirm(msg) ){
		document.location.href = url;
	}*/
	
	$('body').append('<div id="dialog-confirm" title="Confirma ação?" style="display:none;">'+msg+'</div>');
	
	$( "#dialog-confirm" ).dialog({
			resizable: false,
			height:150,
			modal: true,
			buttons: {
				"Confirmar": function() {
					$("#dialog-confirm").remove();
					$( this ).dialog( "close" );
					document.location.href = url;
				},
				"Cancelar": function() {
					$("#dialog-confirm").remove();
					$( this ).dialog( "close" );
				}
			}
		});
	
	return;
		
}

//
// Btn Envia
//
function cms_envia()
{
	$("form").submit();
	return false;
}

//
// Init
//

//var _url = 'http://localhost/ciclo';

function cms_init()
{
	
}

$(document).ready( function()
{
    cms_init();
});
