// JavaScript Document
function mensaje_estado_ok(mensaje){
	return $("#mensaje_alert_estados").fadeIn().html("<div class='ui-widget'><div class='ui-state-highlight ui-corner-all'' style='margin-top: 20px; padding: 0 .7em;'><p><span class='ui-icon ui-icon-info' style='float: left; margin-right: .3em;'></span><strong></strong>"+mensaje+"</p></div></div>")	
}	

function mensaje_estado_error(mensaje){	
	return $("#mensaje_alert_estados").fadeIn().html("<div class='ui-widget'><div class='ui-state-error ui-corner-all'' style='margin-top: 20px; padding: 0 .7em;'><p><span class='ui-icon ui-icon-info' style='float: left; margin-right: .3em;'></span><strong></strong>"+mensaje+"</p></div></div>")	
}

function mensaje_estado_out(){	
	return $("#mensaje_alert_estados").fadeOut();
	//return $("#mensaje_alert_estados").html("");
	//return $("#mensaje_alert_estados").fadeIn();
}

function add_mensaje_estado(contenedor,mensaje){
	return $("#"+contenedor).after("<div class='ancho_350 fuente_11 alto_50'><div class='ui-widget'><div class='ui-state-highlight ui-corner-all'' style='margin-top: 20px; padding: 0 .7em;'><p><span class='ui-icon ui-icon-info' style='float: left; margin-right: .3em;'></span><strong></strong>"+mensaje+"</p></div></div></div>")	
}


function add_cargando(contenedor,mensaje){
	return $("#"+contenedor).html("<div class='ancho_350 fuente_11 alto_50'><div class='ui-widget'><div class='ui-state-highlight ui-corner-all'' style='margin-top: 20px; padding: 0 .7em;'><p><span class='ui-icon ui-icon-info' style='float: left; margin-right: .3em;'></span><strong></strong>"+mensaje+"</p></div></div></div>").fadeIn()
}

function add_mensaje(mensaje){
	return "<div class='ancho_350 fuente_11 alto_50'><div class='ui-widget'><div class='ui-state-highlight ui-corner-all'' style='margin-top: 20px; padding: 0 .7em;'><p><span class='ui-icon ui-icon-info' style='float: left; margin-right: .3em;'></span><strong></strong>"+mensaje+"</p></div></div></div>";
}

function add_load(){
	return "<div class='color_naranja fuente_11'><img src='../iconos/ajax-loader2.gif' />cargando...</div>";
}