function transform(el)
{
	if ($(el).get('tag') == 'input') {
		var type = 'textarea';
	} else {
		var type = 'input';
		
	}
	var current = $(el).get('value');
	var textarea = new Element(type, {
		'id': 'searchform',
		'class': 'boxseek',
		'name': 'ndd'
	}).replaces($(el));

	
	textarea.set('value', current);

}
function togglediv(div)
{
	if ($(div).getStyle('display') == 'block') {
		$(div).setStyle('display', 'none');
	} else {
		$(div).setStyle('display', 'block');
	}
}

function getinfo(id)
{
	new Request.JSON({url: "/ajax/ask.php?a=client&id="+id, onComplete: function(client){
		$('clientinfo').setStyle('display', 'block');
		$('clientinfo').set('html', '<strong>Nom :</strong> '+client.nom+'<br /><strong>Prenom :</strong>' + client.prenom + '<br /><strong>Adresse :</strong> ' + client.adresse + '<br /><strong>CP :</strong> ' + client.cp + '<br /><strong>Ville :</strong> ' + client.ville + '<br /><strong>Tel : </strong>' + client.tel + '<br /><strong>Pass : </strong> ' + client.pass + '<br /><a href="javascript:togglediv(\'clientinfo\')" style="float: right;">Fermer</a>');     
	}}).get();
}
