function inputFocusBlur(inputs)
{//v1.6 inputFocusBlur($('#id1, #id2,...'));
	
	inputs.each(function()
	{
		var txt= $(this).val();
		
		$(this)
		.focus(function()
		{
			if ($(this).val().toLowerCase()==txt.toLowerCase())
				$(this).val('');
		})
		.blur(function()
		{
			if (jQuery.trim($(this).val())=='')
				$(this).val(txt);
		})
	})
}

function frmSubmit(form, fichier, action, id)
{//v2.1
	var params=	'action='+action+'&id='+id;
	var valeur=	"";
	
	//$(":input", form).not("select[multiple]").not($("radio", form)).each(function()
	$(":input", form).not("select[multiple]").each(function()
	{
		valeur	= $(this).val();
		var id	= $(this).attr('id');
		var name= $(this).attr('name');
		
		if (this.type=='checkbox')
		{
			valeur	= this.checked ? 1 : 0;
		}
		else
		if (this.type=='radio')
		{
			var radio=$("input:radio[name="+name+"]");
			
			for (var j=0, Tradio=radio.length; j<Tradio; j++)
			{
				if (radio[j].checked)
				{
					valeur=radio[j].value;
				}
			}
		}
		else
		{		
			valeur= valeur.replace(/€/g, "&euro;");
			valeur= valeur.replace(/™/g, "&trade;");
			valeur= valeur.replace(/’/g, "'");
			valeur= valeur.replace(/œ/g, "oe");
		}
		
		params+="&"+encodeURIComponent(name)+"="+encodeURIComponent(valeur);
	})
	
	ajax_post(fichier, params);

	return false;
}

function ajaxSyncr(file, params)
{
	var reponse="";
	
	$.ajax
	({
		type:		"POST",
		async:	false,
		url:		file,
		data: 	params,
		success:function(data)
		{
			reponse = data;
		}
	})
	
	return reponse;
}

function ajax_post(url, params)
{
	$.post(url, params,
	function(data)
	{
		eval(data);
	});
}

function ajax_get(url, params)
{
	$.get(url, params,
	function(data)
	{
		eval(data);
	});
}

function emails()
{
	$(".email")
	.each(function()
	{
		var email = $(this).text();
		email= email.replace(" [@] ", "@");
		email= email.replace(" [.] ", ".");
		
		$(this).replaceWith("<a href=\"mailto:"+email+"\">"+email+"</a>");
	});
}

function number_format(number, decimals, dec_point, thousands_sep)
{
    // http://kevin.vanzonneveld.net
    // +   original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +     bugfix by: Michael White (http://getsprink.com)
    // +     bugfix by: Benjamin Lupton
    // +     bugfix by: Allan Jensen (http://www.winternet.no)
    // +    revised by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
    // +     bugfix by: Howard Yeend
    // +    revised by: Luke Smith (http://lucassmith.name)
    // +     bugfix by: Diogo Resende
    // +     bugfix by: Rival
    // +      input by: Kheang Hok Chin (http://www.distantia.ca/)
    // +   improved by: davook
    // +   improved by: Brett Zamir (http://brett-zamir.me)
    // +      input by: Jay Klehr
    // +   improved by: Brett Zamir (http://brett-zamir.me)
    // +      input by: Amir Habibi (http://www.residence-mixte.com/)
    // +     bugfix by: Brett Zamir (http://brett-zamir.me)
    // +   improved by: Theriault
    // *     example 1: number_format(1234.56);
    // *     returns 1: '1,235'
    // *     example 2: number_format(1234.56, 2, ',', ' ');
    // *     returns 2: '1 234,56'
    // *     example 3: number_format(1234.5678, 2, '.', '');
    // *     returns 3: '1234.57'
    // *     example 4: number_format(67, 2, ',', '.');
    // *     returns 4: '67,00'
    // *     example 5: number_format(1000);
    // *     returns 5: '1,000'
    // *     example 6: number_format(67.311, 2);
    // *     returns 6: '67.31'
    // *     example 7: number_format(1000.55, 1);
    // *     returns 7: '1,000.6'
    // *     example 8: number_format(67000, 5, ',', '.');
    // *     returns 8: '67.000,00000'
    // *     example 9: number_format(0.9, 0);
    // *     returns 9: '1'
    // *    example 10: number_format('1.20', 2);
    // *    returns 10: '1.20'
    // *    example 11: number_format('1.20', 4);
    // *    returns 11: '1.2000'
    // *    example 12: number_format('1.2000', 3);
    // *    returns 12: '1.200'
    var n = !isFinite(+number) ? 0 : +number, 
        prec = !isFinite(+decimals) ? 0 : Math.abs(decimals),
        sep = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep,
        dec = (typeof dec_point === 'undefined') ? '.' : dec_point,
        s = '',
        toFixedFix = function (n, prec) {
            var k = Math.pow(10, prec);
            return '' + Math.round(n * k) / k;
        };
    // Fix for IE parseFloat(0.55).toFixed(0) = 0;
    s = (prec ? toFixedFix(n, prec) : '' + Math.round(n)).split('.');
    if (s[0].length > 3) {
        s[0] = s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, sep);
    }
    if ((s[1] || '').length < prec) {
        s[1] = s[1] || '';
        s[1] += new Array(prec - s[1].length + 1).join('0');
    }
    return s.join(dec);
}
