/*
function alert(msg)
{
  return $.modaldialog.error(msg);
}

function atencao(msg)
{
  return $.modaldialog.warning(msg);
}

function confirm(msg)
{
  return $.modaldialog.prompt(msg);
}

function sucesso(msg)
{
  return $.modaldialog.success(msg);
}

function sucesso(msg)
{
  return $.modaldialog.success(msg);
}
*/

   
function alert(msg, local, title)
{   
	$(document).ready(function()
	{   
	  if(!title)
	    title = "";
	    
	  return jAlert(msg, title,  function(r) {
	    if( r ){ 
	             if(local == 'back')
	                history.go(-1);
	             else if(local)
	                window.location = local; 
	           }
	  });
	  });
}




function confirm(msg, local)
{
  $(document).ready(function()
    {   
  return jConfirm(msg, 'Confirma?', function(r) {
    return r;

  });
  
   });

}



