// connexion au compte

function razmdp(f) {
	v=document.identification.motdepasse.value;
	init=' mot de passe';
	if (f==1 && v==init) {document.identification.motdepasse.value=''};
	if (f==0 && v=='') {document.identification.motdepasse.value=init};
}

function razpseudo(f) {
	v=document.identification.email.value;
	init=' ton email';
	if (f==1 && v==init) {document.identification.email.value=''};
	if (f==0 && v=='') {document.identification.email.value=init};
}

// ouverture d'une pop-up

function fenetreCent(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}

// suppression de la photo
function suppression_photo(im) {

	im.src='images/pas_de_photo.gif';
	document.form_modifier.testphoto.value=2;

}

// modification de la photo
function nouvelle_photo(im)
{
	var test=document.getElementById('newphoto').value;
	im.src='images/nouvelle_photo.gif';
	document.form_modifier.photo.width=75;
	document.form_modifier.testphoto.value=1;
}

function MM_callJS(jsStr) {
  return eval(jsStr)
}

