// Encode mailto
function encodeContact(a,b,c,d){
   var tg="<";
   var name=a;
   var at="@";
   var host=b;
   document.write(tg+"a hr"+"ef=mai"+"lto:"+name);
   document.write(at+host+" class=\""+d+"\">"+c+tg+"/a>");
}

/////////////////////////////////////////////////////////////////////////////////////
// Fonctions clients
/////////////////////////////////////////////////////////////////////////////////////

// Modifier le pays du panier
/*
function modifierPays(id_pays){
	allerA('mon-panier.php?new_pays='+id_pays);
}
*/
// Se loguer
function logClient(prefixe){
	el = $(prefixe+'login');
	ep = $(prefixe+'password');
	login = '';
	pass = '';
	if(el){login = el.value;}
	if(ep){pass = ep.value;}
	$('AddToBasket').setAttribute("src", 'login-client.php?password='+pass+'&login='+login);
	return false;
}

// Se déloguer
function unlogClient(){
	$('AddToBasket').setAttribute("src", 'login-client.php?out=1');
	//return false;
}
