/* 
	Personnalisation du plugin ChickletCreator
	©2007
*/

/* Toggle
 * Permet d'afficher les urls des chicklets sur une ligne
 *
 */
function Toggle() {

	var thediv = document.getElementById('fb');

	if (thediv.style.display == "block")
		thediv.style.display = "none"
	else if (thediv.style.display == "none")
		thediv.style.display = "block"
}