 <html> <head> <title>Planete Edhec - Annuaire</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">  <script language="JavaScript"> <!-- function MM_preloadImages() { //v3.0   var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();     var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)     if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} }  function MM_findObj(n, d) { //v3.0   var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {     d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}   if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];   for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x; }  function MM_swapImage() { //v3.0   var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)    if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} }  function MM_showHideLayers() { //v3.0   var i,p,v,obj,args=MM_showHideLayers.arguments;   for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];     if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }     obj.visibility=v; } }  function MM_Restore() { //v3.0   var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; }  function MM_Swap() { //v3.0   var i,j=0,x,a= MM_Swap.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)    if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} } //--> </script><style type="text/css"> <!-- a:link {  color: ; text-decoration: none; color: #990000} a:visited {  color: ; text-decoration: none; color: #990000} a:active {  text-decoration: none; color: ; color: #990000} a:hover {  color: ; text-decoration: underline; color: #990000} --> </style><SCRIPT language="JavaScript"> var DernierObjetSelectionne=null;  // Constructeur de l'objet "lastObject" function lastObject (Objet, Type) { this.Objet = Objet; this.Type = Type; this.Valeur = Objet.value; }  // Fonction de confirmation des suppressions function confirmationForm () { if (confirm ("Etes vous sur de vouloir supprimer cet enregistrement")) 	return true; else 	return false; }  function confirmation (url) { if (confirm ("Etes vous sur de vouloir supprimer cet enregistrement")) 	location.href=url; }  // Fonction permetant de faire un reset avec un HREF function MyReset () { document.Formulaire.reset (); }  // Enleve les espaces au debut function trim (chaine) { var temp;  temp=""; for (i=0; i<chaine.length; i++) 	{ 	if (chaine.substring (i, i+1) != " " && chaine.substring (i, i+1) != "\n" && chaine.substring (i, i+1) != "\r") 		{ 		temp=chaine.substring (i, chaine.length); 		break; 		}      	}  return(temp); }  // Verfie la syntaxe de la formule de recherche function analyseSyntaxe (chaine) { if (chaine.substring (0, 1)=="<" || chaine.substring (0, 1)==">") 	{ 	if (chaine.length>2) 		{ 		if (chaine.substring (1, 2)=="=") 			{ 			if (chaine.indexOf ("<", 2) != -1 || chaine.indexOf (">", 2) != -1 || 				chaine.indexOf ("*", 2) != -1 || chaine.indexOf ("=", 2) != -1) 				return(false); 			} 			else 				{ 				if (chaine.indexOf ("<", 1) != -1 || chaine.indexOf (">", 1) != -1 || 					chaine.indexOf ("*", 1) != -1 || chaine.indexOf ("=", 1) != -1) 					return(false); 				} 		} 	else 		{ 		if (chaine.substring (1, 2)=="<" || chaine.substring (1, 2)==">" || 			chaine.substring (1, 2)=="*" || chaine.substring (1, 2)=="=") 			return(false);     		} 	} else 	{ 	if (chaine.indexOf ("<", 0) != -1 || chaine.indexOf (">", 0) != -1 || 		chaine.indexOf ("=", 0) != -1) 		return(false); 	}  return(true); }  // Verifie le contenu d'un champ Date JJ/MM/AA function verifContDate (champ) { var syntaxe; var debut=0; var message="";  if (champ.value.length == 0) 	return true;      champ.value=trim (champ.value);      if (champ.value.length!=8)     { champ.focus();       alert ("Votre date ne possde pas 8 caractres ");       champ.value=DernierObjetSelectionne.Valeur;       return(false);     }     	          	     for (i=0; i<champ.value.length; i++)     {	 	 if (i!=2 && i!=5 )   	 { 	   if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 	       champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 	       champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 	       champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 	       champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9' ) 		{ 		 champ.focus(); 		 alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 		 champ.value=DernierObjetSelectionne.Valeur; 		 return(false); 		} 		 	  } 	  else 	  {  	   	    if (champ.value.substring (i, i+1) != '/')     	    {	champ.focus(); 		alert ("Ce caractre n'est pas un / ["+champ.value.substring (i, i+1)+"]."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 	     }	 		    	  }      }          jour=eval(champ.value.substring (0, 2))     mois=eval(champ.value.substring (3, 5))              if (jour>30 || jour<1)       {	champ.focus(); 	alert ("Le jour doit tre compris entre 01 et 30"); 	champ.value=DernierObjetSelectionne.Valeur; 	return(false);       }	                        if (mois> 12 || mois<1)       {	champ.focus(); 	alert ("Le mois doit tre compris entre 01 et 12"); 	champ.value=DernierObjetSelectionne.Valeur; 	return(false);       }	                  return true      }  // Verifie le contenu d'un champ temps HH:MM:SS function verifContTemps (champ) { var syntaxe; var debut=0; var message="";  if (champ.value.length == 0) 	return true;      champ.value=trim (champ.value);      if (champ.value.length!=8)     { champ.focus();       alert ("Votre Heure ne possde pas 8 caractres ");       champ.value=DernierObjetSelectionne.Valeur;       return(false);     }     	          	     for (i=0; i<champ.value.length; i++)     {	 	 if (i!=2 && i!=5)   	 { 	   if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 	       champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 	       champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 	       champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 	       champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9' ) 		{ 		 champ.focus(); 		 alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 		 champ.value=DernierObjetSelectionne.Valeur; 		 return(false); 		} 		 	  } 	  else 	  {  	   	    if (champ.value.substring (i, i+1) != ':')     	    {	champ.focus(); 		alert ("Ce caractre n'est pas un : ["+champ.value.substring (i, i+1)+"]."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 	     }	 		    	  }      }          heure=eval(champ.value.substring (0, 2))     minute=eval(champ.value.substring (3, 5))     seconde=eval(champ.value.substring (6, 8))                           if (heure>23 || heure<0)       {	champ.focus(); 	alert ("l'heure doit tre comprise entre 00 et 23"); 	champ.value=DernierObjetSelectionne.Valeur; 	return(false);       }	                        if (minute> 59 || minute<0)       {	champ.focus(); 	alert ("Les minutes doivent tre comprises entre 00 et 59"); 	champ.value=DernierObjetSelectionne.Valeur; 	return(false);       }	                     if (seconde> 59 || seconde<0)       {	champ.focus(); 	alert ("Les secondes doivent tre comprises entre 00 et 59"); 	champ.value=DernierObjetSelectionne.Valeur; 	return(false);       }	                     return true      }   // Verifie le contenu d'un champ selon son type function verifContenu (champ, typeChamp) { var syntaxe; var debut=0; var message="";  if (champ.value.length == 0) 	return true;  champ.value=trim (champ.value);  syntaxe=analyseSyntaxe(champ.value); if (typeChamp=='Str') // Chaine 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) == '<' || champ.value.substring (i, i+1) == '>' || 			champ.value.substring (i, i+1) == '=' || champ.value.substring (i, i+1) == '*') 			{ 			champ.focus(); 			alert ("Ce caractre est invalide ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur;; 			return(false); 			} 		} 	} else if (typeChamp=='S') // Chaine en recherche 	{ 	/*if (champ.value.indexOf ("'", 0) != -1) 		{ 		champ.focus(); 		alert ("ATTENTION le caractre ' (simple quote ou apostrophe) n'est pas autoris dans les formulaires de recherche, il est ncessaire de le remplacer par le caractre * (cf. aide).\nVoulez effectuer ce remplacement ?"); 		while (champ.value.indexOf ("'", 0) != -1) 			{ 			tempChaine=champ.value; 			i=champ.value.indexOf ("'", 0); 			champ.value=tempChaine.substring (0,i)+'*'+tempChaine.substring (i+1,tempChaine.length); 			} 		return(false); 		} 	*/ 	if (syntaxe==false) 		{ 		champ.focus(); 		alert ("Mauvaise syntaxe !!"); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} 	return (syntaxe);	 	} else if (typeChamp=='Ng') // Numerique en recherche 	{ 	if (syntaxe==false) 		{ 		champ.focus(); 		alert ("Mauvaise syntaxe !!"); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9' && 			champ.value.substring (i, i+1) != '<' && champ.value.substring (i, i+1) != '>' && 			champ.value.substring (i, i+1) != '=' && champ.value.substring (i, i+1) != '*') 			{ 			champ.focus(); 			alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	} else if (typeChamp=='N') // Numerique 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9') 			{ 			champ.focus(); 			alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	} else if (typeChamp=='Tel') // Telephone ou Telecopie 	{ 	if (champ.value.length >= 1) 		{ 		if (champ.value.substring (0, 1) == '+') 			debut=1; 		else 			debut=0; 		} 	for (i=debut; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9' && 			champ.value.substring (i, i+1) != '.' && champ.value.substring (i, i+1) != '(' && 			champ.value.substring (i, i+1) != ')') 			{ 			champ.focus(); 			message="Ce caractre est incorrect ["+champ.value.substring (i, i+1)+"].\n"; 			message=message+"Vous devez indiquer dans ce champ le numro de tlphone ou de tlcopie\n"; 			message=message+"de manire  ce qu'il puisse tre appel depuis la France.\n"; 			message=message+"Vous ne pouvez utiliser que les chiffres de 0  9, le point '.', les paranthses\n"; 			message=message+"et le plus '+' (uniquement en premire position).\n"; 			message=message+"De manire gnral, les numros franais doivent tre saisis sous la forme :\n"; 			message=message+"\t03.20.99.99.99\n"; 			message=message+"Et les numros internationnaux doivent commencer par un '+' suivi\n"; 			message=message+"du code du pays puis du numro tel qu'il doit tre compos par la personne\n"; 			message=message+"appelant de France.\n"; 			message=message+"Par exemple pour un numro en Grande Bretagne :\n"; 			message=message+"\t+44 181 756 5555\n"; 			message=message+"ou pour le Canada :\n"; 			message=message+"\t+1 416 810 2353\n"; 			alert (message); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	} else if (typeChamp == 'D') // Date = Annee+Mois 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9') 			{ 			champ.focus(); 			alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	if (champ.value.length != 6) 		{ 		champ.focus(); 		alert ("Veuillez saisir la date sous la forme MMAAAA."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} //	annee=champ.value.substring(0, 4); //	mois=champ.value.substring(4, 6); 	annee=champ.value.substring(2, 6); 	mois=champ.value.substring(0, 2); 	if (annee <= 1800) 		{ 		champ.focus(); 		alert ("["+annee+"] n'est pas une date valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	if (mois <= 0 || mois > 12) 		{ 		champ.focus(); 		alert ("["+mois+"] n'est pas un mois valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	}		 else if (typeChamp=='A') // Annee 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9') 			{ 			champ.focus(); 			alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	if (champ.value.length != 4) 		{ 		champ.focus(); 		alert ("Veuillez saisir la date sous la forme AAAA."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} 	if (champ.value <= 1800) 		{ 		champ.focus(); 		alert ("Ceci n'est pas une date valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	}		 else if (typeChamp=='Na') // Naissance = Jour+mois+annee 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9') 			{ 			champ.focus(); 			alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	if (champ.value.length != 8) 		{ 		champ.focus(); 		alert ("Veuillez saisir la date sous la forme JJMMAAAA."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} //	annee=champ.value.substring(0, 4); //	mois=champ.value.substring(4, 6); //	jour=champ.value.substring(6, 8); 	annee=champ.value.substring(4, 8); 	mois=champ.value.substring(2, 4); 	jour=champ.value.substring(0, 2); 	if (annee <= 1800) 		{ 		champ.focus(); 		alert ("["+annee+"] n'est pas une annee valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	if (mois <= 0 || mois > 12) 		{ 		champ.focus(); 		alert ("["+mois+"] n'est pas un mois valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	if (jour <= 0 || jour > 31) 		{ 		champ.focus(); 		alert ("["+jour+"] n'est pas un jour valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	} else if (typeChamp=='aN') // Naissance = Annee+Mois+Jour 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) != '0' && champ.value.substring (i, i+1) != '1' && 			champ.value.substring (i, i+1) != '2' && champ.value.substring (i, i+1) != '3' && 			champ.value.substring (i, i+1) != '4' && champ.value.substring (i, i+1) != '5' && 			champ.value.substring (i, i+1) != '6' && champ.value.substring (i, i+1) != '7' && 			champ.value.substring (i, i+1) != '8' && champ.value.substring (i, i+1) != '9') 			{ 			champ.focus(); 			alert ("Ce caractre n'est pas un chiffre ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur; 			return(false); 			} 		} 	if (champ.value.length != 8) 		{ 		champ.focus(); 		alert ("Veuillez saisir la date sous la forme AAAAMMJJ."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} 	annee=champ.value.substring(0, 4); 	mois=champ.value.substring(4, 6); 	jour=champ.value.substring(6, 8);  	if (annee <= 1800) 		{ 		champ.focus(); 		alert ("["+annee+"] n'est pas une annee valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	if (mois <= 0 || mois > 12) 		{ 		champ.focus(); 		alert ("["+mois+"] n'est pas un mois valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	if (jour <= 0 || jour > 31) 		{ 		champ.focus(); 		alert ("["+jour+"] n'est pas un jour valide."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		}				 	}	 else if (typeChamp=='Ma') // Matricule 	{ 	if (champ.value.length != 8 && champ.value.length != 7) 		{ 		champ.focus(); 		alert ("Veuillez saisir 7 ou 8 caractres."); 		champ.value=DernierObjetSelectionne.Valeur; 		return(false); 		} 	} else if (typeChamp=='Cp') 	{ 	for (i=0; i<champ.value.length; i++) 		{ 		 if (champ.value.substring (i, i+1) == '<' || champ.value.substring (i, i+1) == '>' || 			champ.value.substring (i, i+1) == '=' || champ.value.substring (i, i+1) == '*') 			{ 			champ.focus(); 			alert ("Ce caractre est invalide ["+champ.value.substring (i, i+1)+"]."); 			champ.value=DernierObjetSelectionne.Valeur;; 			return(false); 			} 		} 	} else 	return(false); 	 return(true);	 }  // Sauvegarde un champ dans un objet lastObject function saveObjet (obj, type)  { DernierObjetSelectionne=new lastObject(obj , type); }  // Verifie le dernier objet visite avant le submit function verifDernierObjet() { if (DernierObjetSelectionne==null) 	{ 	 document.Formulaire.submit(); 	 return(true); 	}  if (DernierObjetSelectionne.Objet.value.length != 0) 	{ 	if (verifContenu (DernierObjetSelectionne.Objet, DernierObjetSelectionne.Type)==true) 		{ 		document.Formulaire.submit(); 		return(true); 		} 	else 		return(false); 	} else	 	return(true); }   // Positionne un select sur une valeur en particulier function SelectValeur (obj, valeur) { if (obj.selectedIndex == 0) 	{ 	for (i=0; i<obj.options.length; i++) 		{ 		if (obj.options[i].value == valeur) 			{ 			obj.selectedIndex = i; 			break; 			} 		} 	} return(0); }  // Donne le groupe regional en fonction du dep function GetGpeReg (dep) { valeur=''; // Ile de France G6 if (dep=='75' || dep=='77' || dep=='78' || dep=='91' || dep=='92' || dep=='93' || dep=='94' || dep=='95') 	valeur='G6'; // Lorraine G8 if (dep=='54' || dep=='55' || dep=='57' || dep=='58' || dep=='88') 	valeur='G8'; // Alsace G1 if (dep=='25' || dep=='39' || dep=='67' || dep=='68' || dep=='70' || dep=='90') 	valeur='G1'; // Bretagne G4 if (dep=='22' || dep=='29' || dep=='35' || dep=='44' || dep=='49' || dep=='53' || dep=='56' || dep=='72') 	valeur='G4'; // Rhone-alpes G15 if (dep=='01' || dep=='07' || dep=='26' || dep=='38' || dep=='42' || dep=='69' || dep=='71' || dep=='73' || dep=='74') 	valeur='G15'; // Aquitaine G2 if (dep=='24' || dep=='33' || dep=='40' || dep=='47' || dep=='64') 	valeur='G2'; // Midi-Pyrennees G10 if (dep=='09' || dep=='12' || dep=='31' || dep=='32' || dep=='34' || dep=='65' || dep=='81' || dep=='82' || dep=='46' || dep=='11' || dep=='66') 	valeur='G10'; // Provence G14 if (dep=='04' || dep=='05' || dep=='06' || dep=='13' || dep=='30' || dep=='83' || dep=='84' || dep=='20') 	valeur='G14'; // Poitou-Charentes G13 if (dep=='16' || dep=='17' || dep=='79' || dep=='85' || dep=='86' || dep=='37') 	valeur='G13'; // Picardie G12 if (dep=='02' || dep=='60' || dep=='80') 	valeur='G12'; // Normandie G11 if (dep=='14' || dep=='27' || dep=='50' || dep=='61' || dep=='76') 	valeur='G11'; // Auvergne-Limousin G3 if (dep=='15' || dep=='19' || dep=='23' || dep=='43' || dep=='63' || dep=='87' || dep=='03') 	valeur='G3'; return (valeur); }  // Recupere le libelle pour une valeur dans un select function GetSelectValeur (obj, valeur) { for (i=0; i<obj.options.length; i++) 	{ 	if (obj.options[i].value == valeur) 		{ 		return obj.options[i].text; 		break; 		} 	} return(0); }  // Recupere le libelle pour une valeur dans un select function VerifValeurGpeReg (obj) { if (document.Formulaire.ACPostal.value!="") 	{ 	dep=''; 	if (document.Formulaire.ACPostal.value.length==5) 		{ 		dep=document.Formulaire.ACPostal.value.substring(0, 2); 		} 	valeur=GetGpeReg (dep); 	i=obj.selectedIndex; 	//if (valeur=='' && (obj.options[i].value=='G9' || obj.options[i].value=='G5' || obj.options[i].value=='G7')) 	//	{ 		//alert ("rien"); 	//	} 	//else 	//	{ 	//	if (obj.options[i].value!=valeur) 	//		alert ("ATTENTION le dpartement '" + dep + "' ne correspond pas au groupe rgional '" + obj.options[i].text +"'."); 	//	} 	} else 	{ 	alert ("ATTENTION le code postal de l'adresse personnelle n'est pas renseign."); 	obj.selectedIndex=0; 	}  return(0); } </SCRIPT>  </head>  <body bgcolor="#FFFFFF" LEFTMARGIN=10 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>  <!--Dbut  page centrale --> <table border="0" cellpadding="0" cellspacing="0" width="760">   <!-- Pas Identifie -->   <tr valign="top">         <td colspan="2">      <table border="0" cellpadding="0" cellspacing="0" width="760" bgcolor="#9a0000">         <tr valign="top">            <td><A HREF="http://planete.edhec.com"><img name="logo" src="/includes/img/titres/edhec_temporaire/logo.gif" width="91" height="70" border="0"></A></td>           <td>             <table border="0" cellpadding="0" cellspacing="0" width="195">               <tr valign="top">                  <td><A HREF="http://planete.edhec.com"><img name="edhec" src="/includes/img/titres/edhec_temporaire/edhec.gif" width="195" height="45" border="0"></A></td>               </tr>               <tr valign="top">                  <td>                   <table border="0" cellpadding="0" cellspacing="0" width="195">                     <tr valign="top">                        <td colspan="3" height="25"><img src="http://planete.edhec.com/includes/img/titres/edhec_temporaire/bas_edhec.gif" width="195" height="25"></td>                     </tr>                   </table>                 </td>               </tr>             </table>           </td>           <td>             <table border="0" cellpadding="0" cellspacing="0" width="474">               <tr valign="top">                  <td><img name="menu_03" src="/includes/img/menu_03.gif" width="474" height="3" border="0"></td>               </tr>               <tr valign="top">                  <td>                   <table border="0" cellpadding="0" cellspacing="0" width="474">                     <tr valign="top">                        <td>                         <table border="0" cellpadding="0" cellspacing="0" width="471">                           <tr valign="top">                              <td>                             <a href='http://www.edhec-risk.com' target=_blank><img src="/includes/img/banpub.gif" alt='Click Here !'  WIDTH=468 HEIGHT=60 border=0></a>                              </td>                           </tr>                           <tr valign="top">                              <td><img name="menu_09" src="/includes/img/menu_09.gif" width="471" height="3" border="0"></td>                           </tr>                         </table>                       </td>                       <td><img name="menu_05" src="/includes/img/menu_05.gif" width="3" height="67" border="0"></td>                     </tr>                   </table>                 </td>               </tr>             </table>           </td>         </tr>       </table>     </td>   </tr>   <tr valign="top">      <td colspan="2">            <table border="0" cellpadding="0" cellspacing="0" width="760" bgcolor="#FF9900">       <tr valign="top">          <td><a href="#bandobas"><img name="menu_10" src="/includes/img/menu_10.gif" width="47" height="17" border="0" alt="accder au menu du bas"></a></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('messagerie','','/includes/img/messagerie_bis.gif',1);MM_showHideLayers('messsagerie','','show','ml','','hide','actus','','hide','agendaa','','hide','annu','','hide','forhum','','hide','tribuu','','hide')"><img name="messagerie" src="/includes/img/messagerie.gif" width="85" height="17" border="0"></a></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('mailing','','/includes/img/mailing_bis.gif',1);MM_showHideLayers('messsagerie','','hide','ml','','show','actus','','hide','agendaa','','hide','annu','','hide','forhum','','hide','tribuu','','hide')"><img name="mailing" src="/includes/img/mailing.gif" width="88" height="17" border="0"></a></td>         <td><img name="menu_13" src="/includes/img/menu_13.gif" width="72" height="17" border="0"></td>         <td><img name="menu_13" src="/includes/img/menu_13.gif" width="95" height="17" border="0"></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('actualite','','/includes/img/actualite_bis.gif',1);MM_showHideLayers('messsagerie','','hide','ml','','hide','actus','','show','agendaa','','hide','annu','','hide','forhum','','hide','tribuu','','hide')"><img name="actualite" src="/includes/img/actualite.gif" width="76" height="17" border="0"></a></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('agenda','','/includes/img/agenda_bis.gif',1);MM_showHideLayers('messsagerie','','hide','ml','','hide','actus','','hide','agendaa','','show','annu','','hide','forhum','','hide','tribuu','','hide')"><img name="agenda" src="/includes/img/agenda.gif" width="79" height="17" border="0"></a></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('annuaire','','/includes/img/annuaire_bis.gif',1);MM_showHideLayers('messsagerie','','hide','ml','','hide','actus','','hide','agendaa','','hide','annu','','show','forhum','','hide','tribuu','','hide')"><img name="annuaire" src="/includes/img/annuaire.gif" width="85" height="17" border="0"></a></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('forum','','/includes/img/forum_bis.gif',1);MM_showHideLayers('messsagerie','','hide','ml','','hide','actus','','hide','agendaa','','hide','annu','','hide','forhum','','show','tribuu','','hide')"><img name="forum" src="/includes/img/forum.gif" width="70" height="17" border="0"></a></td>         <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('tribus','','/includes/img/tribus_bis.gif',1);MM_showHideLayers('messsagerie','','hide','ml','','hide','actus','','hide','agendaa','','hide','annu','','hide','forhum','','hide','tribuu','','show')"><img name="tribus" src="/includes/img/tribus.gif" width="63" height="17" border="0"></a></td>         </tr>       </table>     </td>   </tr>   <tr valign="top">         <td colspan="2" bgcolor="#FF9900"><img name="menu_20" src="/includes/img/menu_20.gif" width="760" height="14" border="0"></td>   </tr> </tr> </table> <div id="messsagerie" style="position:absolute; width:435px; height:13px; z-index:1; left: 26px; top:84px; visibility: hidden">    <table valign="top" width="435" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td width="40"><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image25','','/includes/img/accueil_bis.gif',1)"><img src="/includes/img/accueil.gif" width="39" height="13" border="0" name="Image25"></a></td>       <td width="100"><a href="http://www.edhec.com/messagerie/diplomes.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image26','','/includes/img/diplome_bis.gif',1)"><IMG src="/includes/img/diplome.gif" BORDER=0 WIDTH=100 HEIGHT=13 name="Image26"></a></td>       <td width="139"><a href="http://www.edhec.com/messagerie/lille.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image31','','/includes/img/lille_bis.gif',1)"><img src="/includes/img/lille.gif" width="136" height="13" border="0" name="Image31"></a></td>       <td width="140"><a href="http://www.edhec.com/messagerie/nice.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image32','','/includes/img/nice_bis.gif',1)"><img src="/includes/img/nice.gif" width="138" height="13" border="0" name="Image32"></a></td>     </tr>   </table> </div>  <div id="ml" style="position:absolute; width:206px; height:13px; z-index:2; left: 80px; top:84px; visibility: hidden">    <table valign="top" width="206" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td width="39"><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image1','','/includes/img/accueil_bis.gif',1)"><img src="/includes/img/accueil.gif" width="39" height="13" border="0" name="Image1"></a></td>       <td width="113"><a href="/asp/mailing/mailingliste.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image2','','/includes/img/envoi_bis.gif',1)"><img src="/includes/img/envoi.gif" width="113" height="13" border="0" name="Image2"></a></td>       <td width="42"><a href="/asp/contact.asp?ref=mailing" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image3','','/includes/img/contact_bis.gif',1)"><img src="/includes/img/contact.gif" width="42" height="13" border="0" name="Image3"></a></td>     </tr>   </table> </div> <!-- <div id="planette" style="position:absolute; width:65px; height:13px; z-index:3; left: 319px; top: 84px; visibility: hidden">    <table valign="top" width="65" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image4','','/includes/img/myplan_bis.gif',1)"><img src="/includes/img/myplan.gif" width="61" height="13" border="0" name="Image4"></a></td>     </tr>   </table>  </div> --> <div id="actus" style="position:absolute; width:503px; height:13px; z-index:4; left: 134px; top: 84px; visibility: hidden">    <table valign="top" width="503" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td width="39"><a href="/asp/planete_edhec/actu/actu.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image29','','/includes/img/accueil_bis.gif',1)"><img src="/includes/img/accueil.gif" width="39" height="13" border="0" name="Image29"></a></td>       <td width="105"><a href="/asp/planete_edhec/actu/actu.asp#newfc" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image5','','/includes/img/newfction_bis.gif',1)"><img src="/includes/img/newfction.gif" width="105" height="13" border="0" name="Image5"></a></td>       <td width="68"><a href="/asp/planete_edhec/actu/actu.asp#felic" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image6','','/includes/img/felicitation_bis.gif',1)"><img src="/includes/img/felicitation.gif" width="68" height="13" border="0" name="Image6"></a></td>       <td width="86"><a href="/asp/planete_edhec/actu/actu.asp#vieentr" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image7','','/includes/img/vieentse_bis.gif',1)"><img src="/includes/img/vieentse.gif" width="86" height="13" border="0" name="Image7"></a></td>       <td width="51"><a href="/asp/planete_edhec/actu/actu.asp#expat" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image8','','/includes/img/expat_bis.gif',1)"><img src="/includes/img/expat.gif" width="51" height="13" border="0" name="Image8"></a></td>       <td width="63"><a href="/asp/planete_edhec/actu/actu.asp#etenc" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image9','','/includes/img/encore_bis.gif',1)"><img src="/includes/img/encore.gif" width="63" height="13" border="0" name="Image9"></a></td>       <td width="13"><a href="/asp/planete_edhec/actu/actu.asp#cacest" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image10','','/includes/img/passe_bis.gif',1)"><img src="/includes/img/passe.gif" width="105" height="13" border="0" name="Image10"></a></td>       <td width="46"><a href="/asp/planete_edhec/actu/actu.asp#arch" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image11','','/includes/img/archives_bis.gif',1)"><img src="/includes/img/archives.gif" width="46" height="13" border="0" name="Image11"></a></td>     </tr>   </table> </div> <div id="agendaa" style="position:absolute; width:175px; height:21px; z-index:5; left: 428px; top: 84px; visibility: hidden">    <table width="175" border="0" cellpadding="2" cellspacing="2" height="21" align="center">     <tr>        <td width="46%"><a href="http://www.edhec.com/agenda/asp/index.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image4','','/includes/img/agendaed_bis.gif',1)"><img src="/includes/img/agendaed.gif" width="78" height="13" border="0" name="Image4"></a></td>       <td width="54%"><a href="/asp/planete_edhec/agenda/agenda_planete.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image23','','/includes/img/agendapl_bis.gif',1)"><img src="/includes/img/agendapl.gif" width="84" height="13" border="0" name="Image23"></a></td>     </tr>   </table> </div> <div id="annu" style="position:absolute; width:202px; height:13px; z-index:6; left: 489px; top: 84px; visibility: hidden">    <table valign="top" width="202" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td width="39"><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image14','','/includes/img/accueil_bis.gif',1)"><img src="/includes/img/accueil.gif" width="39" height="13" border="0" name="Image14"></a></td>       <td width="109"><a href="/asp/annuaire/identification.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image15','','/includes/img/consult_bis.gif',1)"><img src="/includes/img/consult.gif" width="109" height="13" border="0" name="Image15"></a></td>       <td width="42"><a href="/asp/contact.asp?ref=annuaire" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image16','','/includes/img/contact_bis.gif',1)"><img src="/includes/img/contact.gif" width="42" height="13" border="0" name="Image16"></a></td>     </tr>   </table> </div> <div id="forhum" style="position:absolute; width:388px; height:13px; z-index:7; left: 351px; top:84px; visibility: hidden">    <table valign="top" width="388" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td width="39"><a href="/asp/forum/forum.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image17','','/includes/img/accueil_bis.gif',1)"><img src="/includes/img/accueil.gif" width="39" height="13" border="0" name="Image17"></a></td>       <td width="51"><a href="#" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image18','','/includes/img/inscrire_bis.gif',1)"><img src="/includes/img/inscrire.gif" width="51" height="13" name="Image18" border="0"></a></td>       <td width="61"><a href="/asp/forum/liste_forum.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image19','','/includes/img/cafe_bis.gif',1)"><img src="/includes/img/cafe.gif" width="61" height="13" border="0" name="Image19"></a></td>       <td width="175"><a href="/asp/perdu.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image20','','/includes/img/perdu_bis.gif',1)"><img src="/includes/img/perdu.gif" width="175" height="13" border="0" name="Image20"></a></td>       <td width="42"><a href="/asp/contact.asp?ref=forum" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image21','','/includes/img/contact_bis.gif',1)"><img src="/includes/img/contact.gif" width="42" height="13" border="0" name="Image21"></a></td>     </tr>   </table> </div> <div id="tribuu" style="position:absolute; width:154px; height:13px; z-index:8; left: 600px; top: 84px; visibility: hidden">    <table valign="top" width="154" height="13" border="0" cellspacing="2" cellpadding="2">     <tr>        <td width="39"><a href="/asp/tribu/accueil.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image22','','/includes/img/accueil_bis.gif',1)"><img src="/includes/img/accueil.gif" width="39" height="13" border="0" name="Image22"></a></td>       <td width="61"><a href="/asp/tribu/ptribu.asp" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image30','','/includes/img/mytrib_bis.gif',1)"><img src="/includes/img/mytrib.gif" width="61" height="13" border="0" name="Image30"></a></td>       <td width="42"><a href="/asp/contact.asp?ref=tribu" onMouseOut="MM_Restore()" onMouseOver=" MM_Swap('Image24','','/includes/img/contact_bis.gif',1)"><img src="/includes/img/contact.gif" width="42" height="13" border="0" name="Image24"></a></td>     </tr>   </table> </div> </td> </tr>  </table> <br><table border="0" cellpadding="0" cellspacing="0" width="760"> <tr> <td valign="middle">  <center> <br>   <h1><font face="Verdana, Arial, Default" color="#990000" size="-1"><b><img src="../img/Coupdeco.gif" width="213" height="29"><br>     <br>     </b></font><font face="Verdana, Arial, Default" color="#990000" size="-1"><b>      </b></font></h1>   <p>    <table border="0" width="86%">     <tr>        <td height="658">          <table border="0" width="90%">           <tr>              <td height="78">                <p><font face="Verdana, Arial, Default" color="#FF6600" size=-1></font>                <p>                  <center>                   <font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><b>Tout                    le monde est beau et gentil, le soleil brille, la musique se                    fte et on a envie d'envoyer des messages positifs au monde                    entier, surtout aux parents, sans lesquels on n'en serait pas                    l (o a?).</b> </font>                  </center>                 <b><br>                 </b>                <center>                 <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><b>Merci                    Maman, merci Papa ...</b> </font></p>               </center>               <center>                 <center>                   <center>                   </center>                 </center>               </center>             </td>           </tr>           <tr>              <td> <br>               <table border="0" width="100%">                 <tr>                    <td valign="top" width="184">                      <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1" color="#FF6600">Des                        millions de bisous</font><font face="Verdana, Arial, Helvetica, sans-serif"><br>                       <font size=-1 color="#000000">Pousss par les bons sentiments,                        vous pouvez offrir des chques d'affection - concept certes                        trange, mlant banque et sentiments - sur ce site qui,                        pris au second degr, est, il faut bien l'avouer, extrmement                        drle.</font></font></p>                     <p><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://www.ebizous.com" target="_top"><font size=-1 color="#990000">Ebizous.com</font></a></font></p>                     <p>&nbsp;</p>                   </td>                   <td valign="center" width="218">                      <center>                       <p><a href="http://www.ebizous.com" target="_top"><font face="Arial,Helvetica" size="-1" color="#990000"><img src="img/bisous.gif" width="132" height="70" border="0"><img src="img/dollar.gif" width="123" height="123" border="0"><br>                         <br>                         </font></a></p>                     </center>                   </td>                 </tr>                 <tr>                    <td valign="center" width="211">                      <center>                       <p><a href="http://www.disney.fr/DisneyOnline/Winnie-Cards/index.html" target="_top"><font face="Arial,Helvetica" size="-1" color="#990000"><img src="img/tigrou.gif" width="115" height="110" border="0">                          </font></a></p>                     </center>                   </td>                   <td valign="top" width="218">                      <p><font face="Arial,Helvetica" size=-1 color="#FF6600"> <font face="Verdana, Arial, Helvetica, sans-serif">For                        children only</font></font><font face="Verdana, Arial, Helvetica, sans-serif"><br>                       <font size=-1 color="#000000">En ces temps de fte des mres                        / pres, une pensez pour les enfants qui, eux aussi, ils                        n'y a pas de raisons, peuvent recevoir des cartes lectroniques.                        Tous en coeur : "et...voi...ci... Winnie l'Ourson ... Winnie                        l'Ourson ... tout petit tout doux tout rond et tout mignon                        ..." Estelle, 5 ans.</font></font> </p>                     <p><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://www.disney.fr/DisneyOnline/Winnie-Cards/index.html" target="_top"><font size=-1 color="#990000">WinnieCards</font></a></font>                      </p>                     <p>&nbsp; </p>                   </td>                 </tr>                 <tr>                    <td valign="top" width="184">                      <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1" color="#FF6600">Sophie,                        la girafe</font><font face="Verdana, Arial, Helvetica, sans-serif"><br>                       <font size=-1 color="#000000"> Profitons de ce retour en                        enfance pour nous souvenirs, la larme  l'oeil, de Sophie                        la girafe en plastique qui faisait "pout" entre nos petites                        mains poteles de futurs businessmen. Celle-ci, en plus,                        nous envoie des messages accompagns de dessins originaux                        (Deb, ...) : pas si timbre!</font></font></p>                     <p><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://www.girafetimbree.com" target="_top"><font size=-1 color="#990000">LaGirafeTimbree</font></a></font></p>                     <p>&nbsp;</p>                   </td>                   <td valign="center" width="218">                      <center>                       <a href="http://www.girafetimbree.com" target="_top"><font face="Arial,Helvetica" size="-1" color="#990000"><br>                       <img src="img/postier.gif" width="96" height="96" border="0"><br>                       </font></a>                     </center>                   </td>                 </tr>                 <tr>                    <td valign="center" width="211">                      <center>                       <a href="http://www.dromadaire.com" target="_top"><font face="Arial,Helvetica" size="-1" color="#990000"><img src="img/punaise.gif" width="91" height="117" border="0">                        <br>                       </font></a>                     </center>                   </td>                   <td valign="top" width="218">                      <p><font face="Arial,Helvetica" size=-1 color="#FF6600"> <font face="Verdana, Arial, Helvetica, sans-serif">Chauvinisme</font></font><font face="Verdana, Arial, Helvetica, sans-serif">                        <br>                       <font size=-1 color="#000000">Comment faire une spciale                        "cartes" sans les "dromacartes" bien connues de nos services                        ? ... Et bien, on ne fait pas sans, mme si c'est du chouchoutisme.                        Y'a pas de mal.</font></font> </p>                     <p><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://www.dromadaire.com" target="_top"><font size=-1 color="#990000">Dromadaire</font></a>                        </font> </p>                     <p>&nbsp; </p>                   </td>                 </tr>                 <tr>                    <td valign="top" width="184">                      <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1" color="#FF6600">Plus                        srieusement ....</font><font face="Verdana, Arial, Helvetica, sans-serif"><br>                       <font size=-1 color="#000000"> La preuve par A + B qu'une                        carte peut tre belle et originale sur Internet : le site                        d'un fana de Bjrk (oui, Cannes c'tait le mois dernier)                        et de l'Islande. Peut-tre des cartes pour suggrer une                        ide vacances ?</font></font></p>                     <p><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://hyperballad.free.fr/2ecard.fr.html" target="_top"><font size=-1 color="#990000">Hyperballad</font></a></font></p>                     <p>&nbsp;</p>                   </td>                   <td valign="center" width="218">                      <center>                       <a href="http://hyperballad.free.fr/2ecard.fr.html" target="_top"><font face="Arial,Helvetica" size="-1" color="#990000"><br>                       <img src="img/oiseau.gif" width="80" height="48" border="0">                        <br>                       </font></a>                     </center>                   </td>                 </tr>               </table>               <p align="center">&nbsp; </p>             </td>           <tr>              <td>                <p align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="0005coupdecoeur.asp">Coup de coeur de mai 2000&nbsp;</a></font></p>               <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="0004coupdecoeur.asp">Coup de coeur d'avril 2000</a>&nbsp;</font></p>               <p align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="0003coupdecoeur.asp">Coup de coeur de mars 2000</a></font></p>               <p><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="0002coupdecoeur.asp">Coup de coeur de f&eacute;vrier                  2000</a></font></p>               <p align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="0001coupdecoeur.asp">Coup de coeur de janvier 2000</a></font></p>               <p align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="9912coupdecoeur.asp">Coup de coeur de d&eacute;cembre                  1999</a></font></p>               <p align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">&nbsp;</font><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">                  <a href="9911coupdecoeur.asp">Coup de coeur de novembre 1999</a></font></p>               <p align="left">&nbsp;</p>               <p align="left"><font face="Arial,Helvetica" size=-1><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"><img src="../img/Puce2.gif" width="12" height="9"></font>                  </font><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">Chef                  de rubrique : <a href="mailto:mariestel@caramail.com"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">Marie-Estelle                  Carrasco</font></a> (1997)</font> </p>               <p align="left">&nbsp;</p>             </td>         </table>                </td>     </tr>   </table>   <h1>&nbsp;</h1> </center> <!--Fin  page centrale --> <br> </td> </tr> </table> <a name="bandobas"></a><TABLE width="760" BORDER=0 cellpadding="0" cellspacing="0">        	<tr  valign="bottom"><td colspan="2"><IMG SRC="http://planete.edhec.com/includes/img/ligneorange.gif" BORDER=0 WIDTH=760 HEIGHT=1></td></tr> 	 <TR bgcolor="#fff6e4">       <TD valign="top"><IMG SRC="http://planete.edhec.com/includes/img/rubrique.gif" BORDER=0 WIDTH=83 HEIGHT=14></TD>       <TD align="center"><font face="Verdana, Arial, Helvetica, sans-serif"  size="-1"><A HREF="http://planete.edhec.com/asp/planete_edhec/zoom/zoom.asp">Zoom</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/etudiant/etudiant.asp">Etudiant du mois</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp; <A HREF="http://planete.edhec.com/asp/planete_edhec/coupdecoeur/coupdecoeur.asp">Coup de Coeur </A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/site/site.asp">Site du mois</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/reportage/reportage.asp">Reportage photo</a>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/toile/toile.asp">Toile</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/association/association.asp">Association des Edhec</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/clubspro/clubspro.asp">Clubs Professionnels</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/clubsregio/clubregio.asp">Clubs rgionaux</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/prosdunet/prosdunet.asp">Pros du net</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/startup/startup.asp">Start Up</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<A HREF="http://planete.edhec.com/asp/planete_edhec/musique/musique.asp">Musique</A>       <br><A HREF="http://planete.edhec.com/asp/planete_edhec/multimedia/multimedia.asp">Multimdia, mode d'emploi</A>       &nbsp;<IMG SRC="http://planete.edhec.com/includes/img/separation.gif" BORDER=0 WIDTH=1 HEIGHT=7>&nbsp;<a HREF="http://planete.edhec.com/asp/planete_edhec/webteam/webteam.asp">Webteam</a> 	</font><font face="Verdana, Arial, Helvetica, sans-serif"  size="-2"><BR> <a href="http://planete.edhec.com/asp/planete_edhec/credits/credits.asp">Mentions lgales </a>- Association des Edhec 2001 - Webmaster : <A HREF="mailto:planete@edhec.com">planete@edhec.com</A> 	</font><BR><BR></TD>    </TR> </TABLE> </td> </tr> </table>  </body> </html> 
