function flashMe(fichier, largeur, hauteur){
	document.write('<object type="application/x-shockwave-flash" data="'+fichier+'" width="'+largeur+'" height="'+hauteur+'">\n');
	document.write('<param name="movie" value="'+fichier+'" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('</object>\n');
}

function initialize(f) {
	var champs = new Array(f.nom,f.prenom,f.mail,f.age,f.adresse,f.tel,f.diplome,f.experience, f.aspirations);
	for(i=0;i<9;i++) {
		champs[i].value='';	
	}
}
function popIt(img, largeur, hauteur) {
	var titre="Axys";
	popup=open("",'Axys','width='+largeur+',height='+hauteur+',toolbar=no,scrollbars=no,resizable=yes,left=50,top=50');	
	popup.document.write("<html><head><title>"+titre+"</title></head>");
	popup.document.write("<script language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+32,document.images[0].height+70); window.focus();} else { setTimeout('check()',250) } }</"+"script>");
	popup.document.write("<body onload='checksize()' style='margin:10px 0 0 10px;padding:0;'><img src='"+img+"'>");
	popup.document.write("</body></html>");
	popup.document.close();
}