// la taille du texte
function changertaille(modif) 
{
    var t_now = parseFloat(document.getElementsByTagName("body")[0].style.fontSize);
    
    if (isNaN(t_now))
        t_now = 1;
        
    var t_temp = t_now + modif;
    
    // n'aggrandis pas trop et autorise à réduire le texte
    if (t_temp < 1.4)
        document.getElementsByTagName("body")[0].style.fontSize = (t_now+modif) + "em";
}

function multi_site_switch()
{ 
	window.location.search = '?act=list&w_domain=' + $("#what_domain").val();
}

function switch_client_domain()
{
	window.location.href = 'index.php?act=changeR&c_domain=' + $("#fkNouvelleRegion").val();
}


$(document).ready(function()
{
    // enlève la bordure sous IE
    $("form :checkbox").css("border", "");
});


