function addFav() {
	if (document.all) {
		window.external.AddFavorite(location.href, document.title);
	} else {
		alert('Vous pouvez faire CTRL + D pour ajouter cette page dans vos signets, ou favoris.')
	}
}
function skype()
{
	alert('contacter "firstaffiliation_support" via votre logiciel skype');
	/*try 
	{
		window.
		toto = window.open('skype:firstaffiliation_support?call');
		if ("[object Window]"==toto)
		{
			toto.close();
			window.open('http://download.skype.com/share/skypebuttons/oops/oops.html', 'nom_interne_de_la_fenetre',  config='height=305, width=540,top=200,left=300 toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
		}
		
	} catch (e) 
	{
		alert("camarche pas");
	}*/
}
/* Formulaire*/
function clearAllText(thefield) {
	if (thefield.defaultValue == thefield.value)
		thefield.value = "";
}
function ValidForm()
{
	
	if(document.ins_form.keywords.value=="(séparez avec une virgule)")
	{
		document.ins_form.keywords.value = '';
	}
	return true;
	
}
function showMe(id) {
	if (document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = '' ;
	}
	else {
		document.getElementById(id).style.display = 'none' ;
	}
}

