 <html> <head> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">  <TITLE>Cinmagic   : Home</TITLE> <META NAME="robots" CONTEN="index, follow"> <META NAME="Description" CONTENT="tout sur le cinma"> <META NAME="Keywords" CONTENT="cinema, cinemagic, encyclopedie, CD-Rom, CD-Roms, cederom, cederoms"> <META NAME="dc.keywords" CONTENT="cinema, cinemagic, encyclopedie, CD-Rom, CD-Roms, cederom, cederoms"> <META NAME="Revisit-After" CONTENT="7 days"> <META NAME="Language" CONTENT=""> <META HTTP-EQUIV="Content-Language" CONTENT=""> <SCRIPT LANGUAGE=JavaScript>  //test si le nom du mail contient un @ et un . function test_mail(x) 	{ 		if ((x.indexOf("@")==-1) | (x.indexOf(".")==-1)) 			{ 				alert("Cette adresse E-Mail n'est pas valide"); 				return "" ; 			} 		else return x ; 	} 	 function test_date(x) 	{ 		if (x.options[x.selectedIndex].value==0) 			{ 				alert("Vous devez choisir une date !"); 				return "" ; 			} 		else return x ; 	}	   //check of the number of characters in a textarea function check_length_textarea(thetextarea,maxlen) { checkstring = new String(thetextarea.value) if (checkstring.length > maxlen) 	{ 	laststring = checkstring.substring((maxlen-10),maxlen) 	message = "Attention, le nombre de caractres encods dans cette zone de saisie ne doit pas excder " + maxlen + "\n" 	message = message + "Toutes les informations encodes aprs \"... " + laststring + "\" ne seront pas prises en compte." 	alert(message) 	return false; 	} else 	{ 	return true; 	} }   function must_be_filled() { 	elem_empty = 0;      for (i=0 ; i < document.formu.elements.length ; i++)     { 		form_elem = document.formu.elements[i]; 		elem_name = form_elem.name; 		//alert("elem_name="+elem_name); 		elem_name_end = elem_name.substring(elem_name.length-2, elem_name.length); 		// null string(0) or not string(-1)  		if (elem_name_end == "_x") 		{ 			//alert("X elem_name="+elem_name); 			elem_value = form_elem.value; 			if (elem_value.toString().length < 1) 			{ 				elem_empty++; 				//alert("TROUBLE with elem_name="+elem_name); 			} 		}  		if (elem_name_end == "_y") 		{ 			//alert("Y elem_name="+elem_name); 			elem_index = form_elem.selectedIndex; 			if (elem_index == -1) 			{ 				elem_empty++; 				//alert("trouble WITH elem_name="+elem_name); 			} 		} 	}  	if (elem_empty > 0) 		alert(" Avant de valider votre envoi, vous devez remplir tous les champs obligatoires."); 	else 		document.formu.submit(); 	return; }  //open v-card in new window function openvcard(location) { 	window.open(location,"vcard","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=400") }  </SCRIPT>   <SCRIPT LANGUAGE=JavaScript>   function ShowProgress(barref,valeur) {   strAppVersion = navigator.appVersion;   if (valeur != "")   {     if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4)     {       winstyle = "dialogWidth=375px; dialogHeight:130px; center:yes";       window.showModelessDialog(barref + '&b=IE',null,winstyle);     }     else     {       window.open(barref + '&b=NN','','width=370,height=115', true);     }   }   return true; }  function del_confirm(VAL_ID,STRURL) { if (window.confirm("Etes Vous sur de vouloir supprimer l&#39;annonce N"+VAL_ID+" ?")) 	{  		window.location.href = STRURL; 	} }  function go_URL(x) { 	document.location.href = x; }  function ismail(email) { 	var reg = /^([a-z0-9]+)([._-]([a-z0-9]+))*[@]([a-z0-9]+)([._-]([a-z0-9]+))*[.]([a-z0-9]){2}([a-z0-9])?$/;   		if (reg.exec(email.toLowerCase())==null) { 				alert("Cette adresse E-Mail n'est pas valide"); 		} }  function onlyletterandnumber(input) { 	if (input != "") { 		var reg = /^([a-z0-9._-]+)([._-]([a-z0-9]))?$/;   		if (reg.exec(input.toLowerCase())==null) { 				alert("Seuls les caractres suivants sont autoriss pour vos login et mot de passe: Lettres (A-Z, a-z) , Chiffres (0-9) , tiret (-), soulign (_) et point (.)   "); 		} 	} }  function doigt(x) {  x.style.cursor='hand';  return true; }  function info_skypass()  { 	window.open("http://skypass.skynet.be/info.php?lang=Fr&setpos=1","_blank","width=317,height=450,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no"); }  function open_help(x) {    window.open(x,"aide","width=300,height=300,toolbar=0,menubar=0,location=0,scrollbars=1,resize=0"); }  function open_breve(x) {    window.open(x,"aide","width=600,height=400,toolbar=0,menubar=0,location=0,scrollbars=0,resize=0"); } function open_attente(x) {    window.open(x,"aide","width=600,height=400,toolbar=0,menubar=0,location=0,scrollbars=0,resize=0"); }  function chrcked_true() { 	if (document.formu.condi_x.checked) 		must_be_filled(); 	else  				alert(" Avant de valider votre envoi, vous devez remplir tous les champs obligatoires."); 	return; }   function letter_only(object) {	test=0 ; 	value=object.value 	for(	i = 0	;	i < value.length	;	i++) 			{ 			x=value.charAt(i); 			if (x.toLowerCase()==x.toUpperCase()) 				{ 				test+=1 ; 				} 			} 	if (test>0)  		{ 			object.focus(); 			return "" ; 		} 	else return value ; }  //verifie l' entree de chiffre, a utiliser avec ONKEYUP function number_only(object) { 	value=object.value 	if (isNaN(value)) 		{  		 			window.alert("Vous ne pouvez entrer que des chiffres pour ce champ !!!"); 			object.focus(); 			value=''; 		} return value ; }  //check l'upload de documents //function upload_check(file,typetotreat,mode) //{ /* alert(document.formu.file.value); 	return false;  	filetotreat = is_space(file); 	 filetotreat = is_space(file); if (filetotreat.length == 0) { 	alert("ce champs est vide"); 	return false; } else { 	alert("ce champs n'est pas vide"); 	return false; }   if (typetotreat = "1") 	{ 	//gestion des jpg, jpeg, gif 	length_file = file.length(); 	index_points = lastindexof("."); 	extension = substring(file.value,index_points,length_file); 	alert(extension) 	}  if (typetotreat = "2") 	{ 	//gestion des asp,cgi,pl,cfm,php,php3 	} 	 if ((typetotreat != "1") && (typetotreat != "2")) 	{ 	//gestion des types non dtermin 	} */ //}  //change message in status bar function showstatus(message)  { self.status = message; return true; }   //put no message in status bar function hidestatus() { self.status = ""; return true; }  //open v-card in new window function openvcard(location) { 	window.open(location,"vcard","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=400") }   //open sondage in new window function opensondage(location) { 	window.open(location,"sondage","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=600") }  //Confirm that an user want to quit a community function quit_confirm(STRURL) { if (window.confirm("Etes vous sur de resilier votre inscription comme membre de cette communaute ?")) 	{  	self.location.href = STRURL; 	} }  //Confirm that an user want to unfroze a community function degel_confirm(STRURL) { if (window.confirm("Etes vous certain de vouloir ouvrir votre communaut maintenant ?")) 	{  	self.location.href = STRURL; 	} }  //Test if the input text is preceded by space and delete this space function is_space(input_text) { elem_empty = 0; index = 0; while (index != input_text.length) { 	if (input_text.charAt(index) == ' ') { 		elem_empty = 1; 		index = index + 1; 	} 	else { 		elem_empty = 0; 		input_text = input_text.substring(index,input_text.length+1);		 		index = input_text.length; 	} } if (elem_empty > 0) { 	input_text = ""; }  return input_text; }  //Test the name of a community function no_blankvalue() {	 elem_empty = 0; index = 0; nom_communaute = document.formu.nomcom.value; nom_communaute = is_space(nom_communaute);  if (nom_communaute.length == 0) { 	elem_empty = 1; } if (nom_communaute.length <= 240) { 	if (elem_empty > 0) { 		alert("Vous devez obligatoirement nommer votre communaut pour effectuer cette action."); 	} 	else { 		document.formu.submit(); 	} } else { 	alert("Le nom de votre communaut ne doit pas exder 240 caractres."); } return; }     function upload_check(fichier,type,accept,upload,barref) { 	// accept 0 = no 	// accept 1 = yes  	var status_error = 0; 	var bonne_extension = 0; 	var faute_extension = 0; 	switch(type)  	{ 		case 1: 			extension = new Array('.gif', '.jpg', '.jpeg', '.JPG', '.JPEG', '.GIF');				 			break;	 		case 2: 			extension = new Array('.gif', '.jpg', '.jpeg', '.JPG', '.JPEG', '.GIF','.html','.HTML','.htm','.HTM');				 			break;			 		case 3: 			extension = new Array('.jpg', '.jpeg', '.JPG', '.JPEG');				 			break;																						  		case 6: 			extension = new Array('.asp', '.cgi', '.pl', '.cfm', '.ASP', '.CGI', '.PL', '.CFM','.EXE','.COM','.BAT','.MP3','.INC','.exe','.com','.bat','.mp3','.inc');	 			break;												  	} 		if (fichier=="") { 			must_be_filled();		 		} 		if (fichier!="") { 			for (var i = 0; i < extension.length; i++) { 				var photo = fichier.match(extension[i]); 				if (photo==extension[i]) { 					if (accept==0) { 						bonne_extension = 1; 					} 					if (accept==1) { 						faute_extension = 1; 					} 				} 				if (photo!=extension[i]) { 					if (accept==1) { 						bonne_extension = 1; 					} 					if (accept==0) { 						faute_extension = 1; 					}  				} 			} 		}	 	if (accept==0) { 		if (bonne_extension==1 && faute_extension==0) { 			must_be_filled();	 			if (barref != "") { 				return ShowProgress(barref, fichier); 			} 		} else { 			if (bonne_extension==1) { 				must_be_filled();	 				if (barref != "") { 					return ShowProgress(barref, fichier); 				} 			} else { 				if (faute_extension==1) { 					alert("l'extension de votre fichier n'est pas accepte !"); 				}  			} 		} 	} 	if (accept==1) { 		if (bonne_extension==1 && faute_extension==0) { 			must_be_filled();	 			if (barref != "") { 				return ShowProgress(barref, fichier); 			} 		} else { 			if (faute_extension==1) { 				alert("l'extension de votre fichier n'est pas accepte !"); 			} else { 				if (bonne_extension==1) { 					must_be_filled();	 					if (barref != "") { 						return ShowProgress(barref, fichier); 					} 				}  			} 		} 	} } </SCRIPT> <SCRIPT LANGUAGE=JavaScript>  //test si le nom du mail contient un @ et un . function test_mail(x) 	{ 		if ((x.indexOf("@")==-1) | (x.indexOf(".")==-1)) 			{ 				alert("Cette adresse E-Mail n'est pas valide"); 				return "" ; 			} 		else return x ; 	} 	 function test_date(x) 	{ 		if (x.options[x.selectedIndex].value==0) 			{ 				alert("Vous devez choisir une date !"); 				return "" ; 			} 		else return x ; 	}	   //check of the number of characters in a textarea function check_length_textarea(thetextarea,maxlen) { checkstring = new String(thetextarea.value) if (checkstring.length > maxlen) 	{ 	laststring = checkstring.substring((maxlen-10),maxlen) 	message = "Attention, le nombre de caractres encods dans cette zone de saisie ne doit pas excder " + maxlen + "\n" 	message = message + "Toutes les informations encodes aprs \"... " + laststring + "\" ne seront pas prises en compte." 	alert(message) 	return false; 	} else 	{ 	return true; 	} }   function must_be_filled() { 	elem_empty = 0;      for (i=0 ; i < document.formu.elements.length ; i++)     { 		form_elem = document.formu.elements[i]; 		elem_name = form_elem.name; 		//alert("elem_name="+elem_name); 		elem_name_end = elem_name.substring(elem_name.length-2, elem_name.length); 		// null string(0) or not string(-1)  		if (elem_name_end == "_x") 		{ 			//alert("X elem_name="+elem_name); 			elem_value = form_elem.value; 			if (elem_value.toString().length < 1) 			{ 				elem_empty++; 				//alert("TROUBLE with elem_name="+elem_name); 			} 		}  		if (elem_name_end == "_y") 		{ 			//alert("Y elem_name="+elem_name); 			elem_index = form_elem.selectedIndex; 			if (elem_index == -1) 			{ 				elem_empty++; 				//alert("trouble WITH elem_name="+elem_name); 			} 		} 	}  	if (elem_empty > 0) 		alert(" Avant de valider votre envoi, vous devez remplir tous les champs obligatoires."); 	else 		document.formu.submit(); 	return; }  //open v-card in new window function openvcard(location) { 	window.open(location,"vcard","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=400") }  </SCRIPT>  		<script language="JavaScript" src="http://research.insites.be/03/bim9/fr/start.asp?Siteid=138"></script> 	 	<script> 	var bName = navigator.appName.toUpperCase(); 	if ((bName.indexOf("NETSCAPE") != -1)) 		{ 		document.write("<link media=\"screen\" rel=\"StyleSheet\" type=\"text/css\" href=\"win/Interface/001/cond_admin_netscape.css\">"); 		} 	else 		{ 		document.write("<link media=\"screen\" rel=\"StyleSheet\" type=\"text/css\" href=\"win/Interface/001/cond_admin_iexplorer.css\">"); 		}			 	</script>  </head> <BODY bgcolor="#ffffff" leftmargin="3" rightmargin="3" topmargin="0" style="Default" text="#033265" aLink="#033265" vlink="Blue" link="#000033"><table border="0" cellPadding="0" cellSpacing="0" width="100%" > <tr> <td bgcolor="#FFFFFF"> 	<table border="0" cellPadding="0" cellSpacing="0" width="100%"> 		 			<tr><td><!--06/12/2002 ok JM--> <table width='100%' border='0' cellpadding='0' cellspacing='0'> <!--- DEBUT DE LA LIGNE D'AFFICHAGE DE BANNER ---><TR> <TD background='/win/interface/001/fond_banner.gif' valign='bottom' align='left' width='10%'><a href='/'><IMG src='/win/interface/001/logo2.gif' border=0 alt='www.groopy.be'></a></TD> <TD background='/win/interface/001/fond_banner.jpg' align='left'><iframe  src=http://toolbox.skynet.be/parrot.html?code=66094&height=60&width=468&type=1 width=468 height=60 name='pub' frameborder=0 scrolling=no align=left valign=top marginHeight=0 marginWidth=0></iframe></TD><td></td><td background='/win/interface/001/fond_banner.jpg' valign=top><font class='S7'><b>Visitez aussi :</b></font><br><A href='http://www.skynet.be/'><font class='i1'>Skynet Portail</FONT></A><br><A href='http://www.skynet.be/index.html?l1=communication&l2=chat&new_lang=fr'><font class='i1'>Chat</FONT></A><br><A href='http://www.skynet.be/index.html?l1=communication&l2=forum&new_lang=fr'><font class='i1'>Forums</FONT></A></TD></TR></TABLE><table class=darkestunderbackground width='100%' border='0' cellpadding='0' cellspacing='0'><tr> 		<td width="192" align="left" class=WhiteBackground valign="top"> 			<img src="win/Interface/001/logo2_part2.gif"></td> 		<td align="right" class=WhiteBackground valign="top"> 	  		<table border="0" cellpadding="0" cellspacing="0" border="0" class=WhiteBackground><tr><td align="right" valign="top"><img src="win/Interface/001/ombre_banner.gif" height="14"></td> 			<td class=DarkestUnderBackground valign="top"><a href="community.asp?COM=0"><font class="i1">Homepage Groopy</font></a><font class=i1> | </font><a href=community.asp?mod=95><font class="i1">Crez une communaut !</font></a><font class=i1> | </font><a href=community.asp?H=6646DFDC3B767B78090514787B720507166575720A0517776267090512666674090268><font class="i1">S&#39;inscrire </font></a><font color=white> | </font><a href="http://www.groopy.be/community.asp?H=8F5519F59776797A0D04070C157976710A0E090C15666374080406070656"><font class="i1">Aide</font></a><font color=white> | </font><a href='http://www.groopy.be/community.asp?H=02FAD89A347777780D06040F137B77710B05116578710C0514756C670D07167A637A05051066637708070741' alt='Contacter l'animateur de ce site'><font class="i1">Un problme ?</font></a></b> 			</td></tr></table> 	  	</td> 	  </tr>  	</Table> 	</td></tr> 		 	</table> </td> </tr> </table> <SCRIPT LANGUAGE=JavaScript> var MetriwebRandomNumber = new String (Math.random()); document.write ('<img src="http://line06.metriweb.be/dyn/groopy/mw.cgi?page=Fr/comm/hp/user&R=' + MetriwebRandomNumber + '" width="1" height="1">'); </SCRIPT>	 	<table  border="0" cellPadding="0" cellSpacing="0" width="100%" bgcolor="#ffffff"> <tr> <td width="115" vAlign="top" class="menugauchebackground" align="left"> 	<table  border="0" cellPadding="0" cellSpacing="0" bgcolor="#ffffff" class="menugauchebackground"> 			<tr> 				<td bgcolor="#ffffff" width="115"> 			<!--06/12/2002 ok JM--> <table width="115" border="0" cellspacing="0" cellpadding="0" >   <tr>      <td>        <table width="115" border="0" cellspacing="0" cellpadding="0">         <tr>            <td bgcolor="#31659C">             <table width="100%" border="0" cellspacing="0" cellpadding="0" height="15">               <tr>                 <td>&nbsp; 				<font class="S33">Langue</font> 				<font class="S33"> : </font></td>                 <td height="15" width="15"> 								                   <table width="15" height="15" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000">                     <tr>                        <td bgcolor="#73AADE"><a href='language.asp?IDL=2'><font class="i1">NL</font></a></td>                     </tr>                   </table> 				                    </td>                 <td width="2"></td>               </tr>             </table>           </td>           <td width="13"><img src="win/Interface/001/arrondi_haut_gif.gif" width="13" height="26"></td>         </tr>       </table>     </td>   </tr>   <tr>     <td height="2"><img src="win/Interface/001/background_1.gif" width="116" height="2"></td>   </tr>   <tr>      <td background="win/Interface/001/background_2.gif"><img src="win/Interface/001/background_2.gif"></td>   </tr> </table> 	  				</td> 			</tr>   		 			<tr> 				<td bgcolor="#ffffff" width="115" align="left"> 				<!--06/12/2002 ok JM--> <!--06/12/2002 ok JM--> <table border="0" cellspacing="0" cellpadding="0" width="116" class="menugauchebackground"> 	<form method=post action="http://www.groopy.be/community.asp?H=FB56E44EFF747F7B0B04070C127B76710F05146574730D07167664640B051579627A040514666677040500" name=formulaire> 		<tr> 			<td  class="menugauchebackgroundlight">&nbsp;<font class="S31">Dj inscrit ?</font></td> 		</tr> 		<tr> 			<td class="menugauchebackgroundlight">&nbsp;<b><font class="S1">Login</font></b></td> 		</tr> 		<tr> 			<td class="menugauchebackgroundlight">&nbsp; 			<script>  			var bName = navigator.appName.toUpperCase(); 			 			if ((bName.indexOf("NETSCAPE") != -1)) 				{ 				document.write("<input class='nonAlignMainTextNormal' name=usrlog size=6 value='"); 				} 			else 				{ 				document.write("<input class='nonAlignMainTextNormal' name=usrlog size=11 value='"); 				}			 			</script>'> <!--BE CAREFULL you mustn't put a blank space between </script> and the Response.Write username & "'>" else you will have problem with the login--> 				<input type=hidden name="login" value="#"> 			</td> 		</tr> 		<tr> 			<td class="menugauchebackgroundlight">&nbsp;<b><font class="S1">Mot de passe</font></b></td> 		</tr> 		<tr> 			<td valign="top" class="menugauchebackgroundlight">&nbsp; 			<script> 			if ((bName.indexOf("NETSCAPE") != -1)) 				{ 				document.write("<input class='nonAlignMainTextNormal' type=password name=pwdlog size=6>"); 				} 			else 				{ 				document.write("<input class='nonAlignMainTextNormal' type=password name=pwdlog size=8>"); 				}			 			</script> 			&nbsp;<input type="image" border="0" src="win/Interface/001/ok.gif" value="ok"></td> 		</tr> 		<tr> 			<td class="menugauchebackgroundlight"><table><tr><td><input type=checkbox name=remember></td><td> <font class="S5">Se souvenir de mon identit</font></td></tr></table></td> 		</tr> 		 						<tr> 			<td background="win/Interface/001/pointille.gif" height="2"><img src="win/Interface/001/pointille.gif"></td> 		</tr>		 		<TR><TD  class="menugauchebackgroundlight">&nbsp;<font class="S31">Pas inscrit ?</font></TD></TR><tr><TD class="menugauchebackgroundlight"><br><center><img src='win/Interface/001/picto_subscrive.gif'><a href="http://www.groopy.be/community.asp?H=93944A29F67678780C04030C14787D72080516667A730D05127463670C05116666740F0239"><font class="S6">S&#39;inscrire gratuitement !</font></a></center><br><div align="right"><img src='win/Interface/001/picto_skypass.gif'>&nbsp;</div></td></tr> 								<tr> 			<td background="win/Interface/001/pointille.gif" height="2"><img src="win/Interface/001/pointille.gif"></td> 		</tr>	 		<tr> 		 			<td class="menugauchebackgroundlight"><a href="http://www.groopy.be/community.asp?H=075CF1E7947777780804070F117A7F7004061F6678710A0514756C670805156563760D0501B0"><i><font class="S1">Mot de passe perdu?</font></i></a> 				 				<input type="hidden" name="resolution" value="">  			</td> 		</tr> 	</form> 	<SCRIPT language=JavaScript1.2> 		document.formulaire.resolution.value = screen.width; 	</SCRIPT>  <tr> <td> <img src="win/Interface/001/bas.gif" width="116" height="15"> </td> </tr> </table>  				</td> 			</tr> 		<!--06/12/2002 ok JM-->  	<tr> 		<td class="menugauchebackground" width="115"> 			<!--06/12/2002 ok JM--> <TABLE  width='115' cellspacing='0' cellpadding='0' bgcolor=#ffffff> 	<TR> 		<TD class="menugauchebackground">&nbsp; 			<font class="S32">Nouveauts</font> 		</TD> 	</TR> 	<TR> 		<TD align="center"  class="menugauchebackground"> 			<TABLE width='100%' cellspacing='0' cellpadding='0'> 			 			<tr> 			<td  class="menugauchebackground"> 			</td> 			</tr> 				<tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7284'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>Moulin Rouge</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7271'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>Belgian Ballon Club</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7267'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>Aristobald</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=6310'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>tout sur le berger malinois</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7242'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>Claudio DOS SANTOS & France BASTOEN</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7251'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>les randonneurs mouscron</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7184'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>Bible et spiritualit</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7228'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>CRAZY TAZ Roller In-Line Hockey</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7217'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>Solaris</a></font></td></tr> <tr><td></td><td><font size=-2><a href='http://www.groopy.be/community.asp?COM=7222'><font color=#ffffff><img src='/Win/Interface/001/pt_carre.gif' height=6 width=14  border=0>plus jamais seul.</a></font></td></tr>  					<!--- <TR> tags are built within topnewcoms.inc  ---> 				  			</TABLE>    		</TD> 	</TR> </TABLE>  		</td> 	</tr>  	<tr> 		<td class="menugauchebackground" width="115"> 			    <br> <table width="116" border="0" cellspacing="0" cellpadding="0" bgcolor="#31659C">               <tr height="9">     	<td><img src="win/Interface/001/stat_top.gif" width="116" height="9"></td>   	</tr>   <tr>      <td valign="top" background="win/Interface/001/background_2.gif"> 	 	 	<font class="S36">&nbsp;Stats:<br></font> 	<font class="S5"> 	<b>&nbsp;2851</b>&nbsp;<font class="S5">communauts</font><br> 	<b>&nbsp;14554</b>&nbsp;<font class="S5">utilisateurs</font><br> 	</font> 	 	 	 	</td>   </tr>   <tr height="9">      <td> <img src="win/Interface/001/stat_bot.gif" alt="" border="0" width="116" height="9"></td>   </tr>    </table>   		</td> 	</tr>  </table> 	  </td> <td vAlign="top" width=100% > 	 	<table class="UnderBackground" border="0" cellPadding="0" cellSpacing="0" width="98%" align=center> 	<tr> 		 			<td colspan = 2  WIDTH="98%" valign=top> 				<center> 				<table border='0' cellspacing='0' cellpadding='0' width='98%'> 				<tr> 				<td><img src="win/Interface/001/cadre.gif"></td> 				<td background="win/Interface/001/Border_high_light_blue.gif" valign="bottom" align="left"> 				<img src="win/Interface/001/Border_high_light_blue.gif"></td> 				<td><img src="win/Interface/001/cadre.gif"></td> 				</tr> 					<tr> 						<td valign="top" background="win/Interface/001/cadre.gif" align="left" width="1"> 						<img src="win/Interface/001/cadre.gif"></td> 						<td> 						<!--06/12/2002 ok JM--> <center><table width=100% class=VeryLightBlue border=0 cellpadding=5 cellspacing=5> <tr><td valign="TOP" class=VeryLightBlue> <table border=0><tr><td><font class=community_title size="3"><u><b>Cinmagic  </b></u></font></td></tr></table><br><a href="http://www.groopy.be/cinemagic"><font class=S1>http://www.groopy.be/cinemagic</font></a></FONT></FONT></FONT><br><br><font class="S2">Animateur :</font><a href='http://www.groopy.be/community.asp?H=D278D77A3F7577780D04010C107B77710802136578710C0716776C670D05137A7B0B08137A66780B05137E76646405057C'><font class=S3>Cinmagic</font></a>&nbsp;<a href='http://www.groopy.be/community.asp?H=188116D8407776780B04020D1F79767109011E667B710F041E756D670B05107B740909137B65750806137D756C66040564'><img src='win/Interface/001/head_mail.gif' border=0 alt='Envoyer un courrier  l&#39;animateur' align=top ></a>&nbsp; </td> <td align=center class=VeryLightBlue> <table width=100% border=0 cellpadding=0 cellspacing=0><tr><td width="33%" valign=top> 		<center><a HREF=http://www.groopy.be/community.asp?H=705A1E7FC2767A790504070F13797672040513647D720A051674616605051565617504071F7C780A014B><img src='win/Interface/001/head_devenir_membre.gif' border=0 alt='' ><br><font class="S1">Devenir <br> membre</font></a></center></td><td width="33%"><center><A HREF=http://www.groopy.be/community.asp?H=7ABEDE2BE8767A7B0807020F1F7B7772040516657B72040510746164080610656D7705070FEC><img src='win/Interface/001/head_inviter_ami.gif' border=0 alt='' ><br><font class="S1">Inviter <br> un ami</font></a></center></td><td width="33%"><center><A HREF=http://www.groopy.be/community.asp?H=B5733C83B77579780E04010C17787E720A0510667C720B05137762670E0513787E710C0707C5><img src='win/Interface/001/head_membre_off.gif' border=0 alt='' ><br><font class="S1">Annuaire <br> des membres</font></a></center></td></tr></table><table width=100% border=0 cellpadding=0 cellspacing=0><tr><td align="RIGHT" valign="TOP"> </td></tr></table></td></tr></table></center>  								<table cellpadding=0 cellspacing=0 width="100%" border=0><tr valign=bottom><td><center><!--06/12/2002 ok JM-->  	<table border="0" cellspacing="0" cellpadding="0"  width=100%  class="VeryLightBlue"> 	<tr valign=bottom align=center height=16> 		<td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/bord_blanc_left.gif'></td><td  align="left" background='win/Interface/001/back_blanc.gif' class="WhiteBackground" valign="top"><center><font class="S1">Home</font></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/blanc_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=33E60BD208767E780C070D0C127977720B07CD onMouseOver = " window.status = 'Webzine'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Webzine</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=3AD94E2372767E7B08070C0C11787D720406CE onMouseOver = " window.status = 'Liens'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Liens</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=CDD994358775787B05070C0C117878710F01CD onMouseOver = " window.status = 'Forum'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Forum</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=E01817DA4075767905050D0C1079767108039A onMouseOver = " window.status = 'Annonces'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Annonces</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=325F7D1E7D767E780D04070E16787A72050CE7 onMouseOver = " window.status = 'Agenda'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Agenda</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=0E0413401D77777B04050C0C147976710C0CAA onMouseOver = " window.status = 'Chat'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Chat</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td><td  align="left" background='win/Interface/001/back_jaune.gif' class="yellowBackground" valign="top"><center><a href=http://www.groopy.be/community.asp?H=0F8D4305C277777A0D04020F1E787D710C050B49 onMouseOver = " window.status = 'Fichiers'; return true;" onMouseOut = " window.status = 'Bienvenue dans les communauts Groopy !!'; return true;"><font class="S1">Fichiers</font></a></center></td><td height="10" width="7" align="left" valign="top"><img src='win/Interface/001/jaune_jaune.gif'></td> 		</td> 	 	</tr> </table> </center></td></tr></table> 							 	<table border=0 cellpadding=5 cellspacing=5 width=100%> 		<tr> 			<td width=30% height=94 align=center> 				<img src='/communities/COM_0149/interface/logo_com.gif' border=0> 			</td> 			 			<td width=70% valign=top rowspan=2> 				 <table> <tr><td><font class="modtitle">LE JOURNAL INTERACTIF</font><br></td></tr> <tr><td><font class="S1">Tout sur le cinma! A la recherche d'informations "pointues" sur le 7e Art? Envie de savoir, de partager ou de communiquer? Rendez-vous ici!<br>Votre avis, vos suggestions: cliquez sur la petite enveloppe qui se trouve un peu plus haut, sur la gauche.<br>Pour vous inscrire et participer au journal interactif: cliquez ci-dessus sur "Devenir membre". C'est GRATUIT!</font><br></td></tr> </table>  			</td> 		</tr> 	</table> 	<table border=0 cellspacing=10 width=100%><tr> <td height="4" background="win/Interface/001/point_hp.gif"><img src="win/Interface/001/point_hp.gif"></td> </tr></table> 	<!--nicoselect n_item_mod1, n_item_mod2, n_item_mod3,n_item_mod4,n_item_mod5,n_item_mod6, n_item_mod13, n_item_mod14 from communautes_liste where id_communautes_liste = 149--> 	<table border=0 cellspacing=10 width=100%>  	<tr> 	<td width=49% valign=top> 		<table cellspacing='0' cellpadding='0'><tr><td rowspan=2 valign=top width=50><A href=http://www.groopy.be/community.asp?H=72E1847506767A780D070D0D1F7879710F04CC><img src='win/Interface/001/hom_mag.gif' border=0 alt='' > </a></td><td valign=bottom><A href=http://www.groopy.be/community.asp?H=5F9FAC0E7C767C7A0D04030E167B7A720A0513><font class="modtitle">Webzine</font></a></td></tr><tr height='3'><td width='100%'  background='win/Interface/001/back_line.gif'><img src='win/Interface/001/back_line.gif'></td><td width='12'><img src='win/Interface/001/right_line.gif'  width='12' height='3' border='0'></td></tr><tr></tr><tr><td></td></tr></table><font class="S3">Articles rcents :</font><br><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=E3493549F17576780C04060C11787E710E0414667A730D060A10786163080303010404AC"><font class="S1">Les anniversaires du mois</a></font><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=00B03B3A0C7777790507020D1E787E720B04176578700504041279606A0B0702090C03BC"><font class="S1">Maurice Pialat  </a></font><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=1E7F0620B277767B0404010E167977710904166775720B07031278626B08040404020C9B"><font class="S1">Marilyn Monroe</a></font><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=8DBBA1930076797B0507020F107B7A70040411667C7005060B1377626A0B0705070703C5"><font class="S1">1000 compositeurs de cinma </a></font><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=5C1283A550767C7B0A050D0C167879710C0713667E710E060B13726265090807020307CB"><font class="S1">Cannes 2002 </a></font><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><BR><p align="right"><A href=http://www.groopy.be/community.asp?H=CFBFD265FF75787A0D07020E167B77710D0411><font class="LinkHomepage">[Tous les articles]</font></a></p><br><br><table width="100%"><tr><td><div align=right><table  cellspacing="0" cellpadding="0" border="0"><tr height="17" align="right"><td width="6"><img src='win/Interface/001/btn1_left.gif'  width="6" height="17" border="0"></td><td background='win/Interface/001/btn1_midle.gif' align="center" class="Backgrounddarkblue"><a href="http://www.groopy.be/community.asp?H=27F914C49F767F780806040C117976710F0111667F710A07167464670803167A7A0908137D657A080213787664670D0562"><font class="S36">Proposez un article ou une brve</font></a></td><td width="6"><img src='win/Interface/001/btn1_right.gif'  width="6" height="17" border="0"></td></tr></table></td></tr></table></div><table width="100%" cellspacing='0' cellpadding='0' border='0'><tr height='14'><td width='12'><img src='win/Interface/001/left_line2.gif'  width='202' height='14' border='0'></td><td width='100%' background='win/Interface/001/back_line2.gif'><img src='win/Interface/001/back_line2.gif'></td></tr></table><br><br> 	</td> 	<td width=2%></td> 	<td width=49% valign=top> 		<table cellspacing='0' cellpadding='0' ><tr><td rowspan=2 valign=top width=50><A href=http://www.groopy.be/community.asp?H=7C06B4B5C3767A7B0A050C0C127B79710F05EC><img src='win/Interface/001/hom_lien.gif' border=0 alt='' > </a></td><td valign=bottom><A href=http://www.groopy.be/community.asp?H=D88D848C1B7577780B04020F1E7879710F06E2><font class="modtitle">Liens</font></a></td></tr><tr height='3'><td width='100%' background='win/Interface/001/back_line.gif'><img src='win/Interface/001/back_line.gif'></td><td width='12'><img src='win/Interface/001/right_line.gif'  width='12' height='3' border='0'></td></tr><tr></tr><tr><td></td></tr></table><font class="S3">Hyperliens rcents :</font><table border=0 width="100%"><tr><td><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.lecomoedia.com" target="_blank"><font class="S1">Comoedia</font></a></td><td align=right><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ></td></tr><tr><td width="100%" colspan=2><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><tr><td><img src='win/Interface/001/fleche_rub.gif'><a href="http://dvadd.free.fr" target="_blank"><font class="S1">Doublage, vous avez dit doublage?</font></a></td><td align=right><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ></td></tr><tr><td width="100%" colspan=2><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><tr><td><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.allocine.be" target="_blank"><font class="S1">Allocin Belgique</font></a></td><td align=right><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ></td></tr><tr><td width="100%" colspan=2><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><tr><td><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.allocine.fr" target="_blank"><font class="S1">Allocin</font></a></td><td align=right><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ></td></tr><tr><td width="100%" colspan=2><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><tr><td><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.roulive.com" target="_blank"><font class="S1">Roulive</font></a></td><td align=right><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ><img src='win/Interface/001/gen_star.gif' border=0 alt='' ></td></tr><tr><td width="100%" colspan=2><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table></tr></table></b></b><p align="right"><A href=http://www.groopy.be/community.asp?H=24D883A09F767F780F070C0C107879710C05D9><font class="LinkHomepage">[Tous les hyperliens]</font></a></p><br><br><table width="100%"><tr><td><div align=right><table  cellspacing="0" cellpadding="0" border="0"><tr height="17" align="right"><td width="6"><img src='win/Interface/001/btn1_left.gif'  width="6" height="17" border="0"></td><td background='win/Interface/001/btn1_midle.gif' align="center" class="Backgrounddarkblue"><a href="http://www.groopy.be/community.asp?H=9213F2E44F7678780D050D0C177A7F710D011F667F710F07167463670D031F7A7C0A03137F65740802137D7664670A04B9"><font class="S36">Proposez un lien</font></a></td><td width="6"><img src='win/Interface/001/btn1_right.gif'  width="6" height="17" border="0"></td></tr></table></td></tr></table></div><table width="100%" cellspacing='0' cellpadding='0' border='0'><tr height='14'><td width='12'><img src='win/Interface/001/left_line2.gif'  width='202' height='14' border='0'></td><td width='100%' background='win/Interface/001/back_line2.gif'><img src='win/Interface/001/back_line2.gif'></td></tr></table><br><br> 	</td> 	</tr> 	 	<tr> 	<td width=49% valign=top> 		<table cellpadding=0 cellspacing=0 ><tr><td rowspan=2 valign=top width=50><A href=http://www.groopy.be/community.asp?H=98F2C36A197678780B06040C167B78710C00C4><img src='win/Interface/001/hom_ann.gif' border=0 alt='' > </a></td><td valign=bottom><A href=http://www.groopy.be/community.asp?H=4E56F9CE4A767D7B0404070C127A7F710A03F7><font class="modtitle">Petites annonces</font></a></td></tr><tr height='3' valign=top><td width='100%'  background='win/Interface/001/back_line.gif'><img src='win/Interface/001/back_line.gif'></td><td width='12'><img src='win/Interface/001/right_line.gif'  width='12' height='3' border='0'></td></tr><tr></tr><tr><td></td></tr></table><font class="S3">Annonces rcentes :</font><br><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=53735323CF767C780C04010C17787C710C0016667C720A07167467670C03000502EC"><font class="S1">Cherche "La Polka des Marins"</font></a><br><table width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><p align="right"><A href=http://www.groopy.be/community.asp?H=211C8C8762767F7904050D0F117879720A00B1><font class="LinkHomepage">[Toutes les annonces]</font></a></p><br><br><table width="100%"><tr><td><div align=right><table  cellspacing="0" cellpadding="0" border="0"><tr height="17" align="right"><td width="6"><img src='win/Interface/001/btn1_left.gif'  width="6" height="17" border="0"></td><td background='win/Interface/001/btn1_midle.gif' align="center" class="Backgrounddarkblue"><a href="http://www.groopy.be/community.asp?H=5CFEDCA125767C7B0A06040F1F7B77720A03136774710D04157467640A07167A6F7A0504A7"><font class="S36">Insrez une annonce</font></a></td><td width="6"><img src='win/Interface/001/btn1_right.gif'  width="6" height="17" border="0"></td></tr></table></td></tr></table></div><table width="100%" cellspacing='0' cellpadding='0' border='0'><tr height='14'><td width='12'><img src='win/Interface/001/left_line2.gif'  width='202' height='14' border='0'></td><td width='100%' background='win/Interface/001/back_line2.gif'><img src='win/Interface/001/back_line2.gif'></td></tr></table><br><br> 	</td> 	<td width=2%></td> 	<td width=49% valign=top> 		<table  cellspacing='0' cellpadding='0' ><tr><td rowspan=2 valign=top width=50><A href=http://www.groopy.be/community.asp?H=501C85D187767C7905050D0F117879710E0EC8><img src='win/Interface/001/hom_age.gif' border=0 alt='' > </a></td><td valign='bottom'><A href=http://www.groopy.be/community.asp?H=0367A2EF827777780C04000C137B7A710D0ED3><font class="modtitle">Agenda</font></a></td></tr><tr height='3' valign=top><td  width='100%'  background='win/Interface/001/back_line.gif'><img src='win/Interface/001/back_line.gif'></td><td width='12'><img src='win/Interface/001/right_line.gif'  width='12' height='3' border='0'></td></tr><tr><tr><td></td></tr></table><font class="S3">Evnements proches :</font><br><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=09A56ABE857777780A07010C15787B72080E106574710B054B#6682"><font class="S1">Festival du Film Europen de Bruxelles</font></a>&nbsp<font class="S1">Du</font>&nbsp<font class="S1">23/04/2003 &nbsp</font><font class="S1">au</font>&nbsp<font class="S1">03/05/2003 </font><table border="0" width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><img src='win/Interface/001/fleche_rub.gif'><a href="http://www.groopy.be/community.asp?H=DC095C839B75777B0A050C0C11787C720A0D10667C710A067C#5659"><font class="S1">56e Festival International du Film de Cannes</font></a>&nbsp<font class="S1">Du</font>&nbsp<font class="S1">14/05/2003 &nbsp</font><font class="S1">au</font>&nbsp<font class="S1">25/05/2003 </font><table border="0" width="100%"><tr><td height="2" background='win/Interface/001/point_hp.gif'><img src='win/Interface/001/point_hp.gif' height="1"></td></tr></table><p align="right"><br><A href=http://www.groopy.be/community.asp?H=D9FCAF33007577780A06040F117B7A730D0DF2><font class="LinkHomepage">[Tous les vnements]</font></a></p><br><br><table width="100%"><tr><td><div align=right><table  cellspacing="0" cellpadding="0" border="0"><tr height="17" align="right"><td width="6"><img src='win/Interface/001/btn1_left.gif'  width="6" height="17" border="0"></td><td background='win/Interface/001/btn1_midle.gif' align="center" class="Backgrounddarkblue"><a href="http://www.groopy.be/community.asp?H=036ACE089E7777780C04000F137B787204031E667B710A061F756C670C031279780B0F1076677508061378776D66050383"><font class="S36">Proposez un vnement</font></a></td><td width="6"><img src='win/Interface/001/btn1_right.gif'  width="6" height="17" border="0"></td></tr></table></td></tr></table></div><table width="100%" cellspacing='0' cellpadding='0' border='0'><tr height='14'><td width='12'><img src='win/Interface/001/left_line2.gif'  width='202' height='14' border='0'></td><td width='100%' background='win/Interface/001/back_line2.gif'><img src="win/Interface/001/back_line2.gif"></td></tr></table><br><br> 	</td> 	</tr> 	 	<tr> 	<td width=49% valign=top> 		<table cellspacing='0' cellpadding='0' ><tr><td rowspan=2 valign=top width=50><A href=http://www.groopy.be/community.asp?H=C09A7A039B7578790504030F13787A7208050B13677C72610B0717><img src='win/Interface/001/hom_fichier.gif' border=0 alt='' > </a></td><td valign=bottom><A href=http://www.groopy.be/community.asp?H=2AAFFA3618767F7B0807010E167A7F7208040213627D7C620B044D><font class="modtitle">Fichiers et Albums Photos</font></a></td></tr><tr height='3'><td width='100%' background='win/Interface/001/back_line.gif'><img src='win/Interface/001/back_line.gif'></td><td width='12'><img src='win/Interface/001/right_line.gif'  width='12' height='3' border='0'></td></tr><tr></tr><tr><td></td></tr></table><table border=0 width="100%"><tr><td></td><td><a href="http://www.groopy.be/community.asp?H=E39DD4F08B7576780C04030F1E7B77710F0603126E7C73610B075B"><img src='win/Interface/001/par_type_01.gif' border=0 alt='Dossier' ></a></td><td><a href="http://www.groopy.be/community.asp?H=5CB149E844767C7B0A07020D1F787D710A070A136578760803137262650B07020F137E637B0B0813607C77620F04B4"><font class="S1">Cinmagic 1998</font></a></td><td><font class='S1'>(2)</font></td></tr><tr><td colspan=4 width="100%"><table width="100%" border="0"><tr><td height="2" background='win/Interface/001/point_hp.gif' width="100%"><img src='win/Interface/001/point_hp.gif' height='1'></td></tr></table></td></tr><tr><td></td><td><a href="http://www.groopy.be/community.asp?H=3935DD8078767E780A04050C157B7772050405126E7C70620B0419"><img src='win/Interface/001/par_type_01.gif' border=0 alt='Dossier' ></a></td><td><a href="http://www.groopy.be/community.asp?H=DCFE20D26375777B0A06040F1F787F7005070B136378700800107962650A01000E137C62740B0913667C71620C0795"><font class="S1">Cinmagic 1999</font></a></td><td><font class='S1'>(3)</font></td></tr><tr><td colspan=4 width="100%"><table width="100%" border="0"><tr><td height="2" background='win/Interface/001/point_hp.gif' width="100%"><img src='win/Interface/001/point_hp.gif' height='1'></td></tr></table></td></tr><tr><td></td><td><a href="http://www.groopy.be/community.asp?H=E919F413D97576780A050D0C117A7F710F050A13677F7D620A075C"><img src='win/Interface/001/par_type_01.gif' border=0 alt='Dossier' ></a></td><td><a href="http://www.groopy.be/community.asp?H=8D0AB7784D76797B05050C0F137B7971080406136578760B091377626A090C0E03107A6379080413607C7761050488"><font class="S1">Cinmagic 2000</font></a></td><td><font class='S1'>(2)</font></td></tr><tr><td colspan=4 width="100%"><table width="100%" border="0"><tr><td height="2" background='win/Interface/001/point_hp.gif' width="100%"><img src='win/Interface/001/point_hp.gif' height='1'></td></tr></table></td></tr><tr><td></td><td><a href="http://www.groopy.be/community.asp?H=3245F59C31767E780D04060C157A7F710E040410617C7463040410"><img src='win/Interface/001/par_type_01.gif' border=0 alt='Dossier' ></a></td><td><a href="http://www.groopy.be/community.asp?H=C15736655F7578790404070C13787E71090407136078770A011076606B08020C060317796279090415637A72670B06A4"><font class="S1">Cinmagic 2001</font></a></td><td><font class='S1'>(2)</font></td></tr><tr><td colspan=4 width="100%"><table width="100%" border="0"><tr><td height="2" background='win/Interface/001/point_hp.gif' width="100%"><img src='win/Interface/001/point_hp.gif' height='1'></td></tr></table></td></tr></table><p align="right"><A href=http://www.groopy.be/community.asp?H=1191FBE8D67776790404030D1F7A7F720B070A13607F7D6209054C><font class="LinkHomepage">[Tous les fichiers et albums]</font></a></p><br><br><table width="100%"><tr><td><div align=right><table  cellspacing="0" cellpadding="0" border="0"><tr height="17" align="right"><td width="6"><img src='win/Interface/001/btn1_left.gif'  width="6" height="17" border="0"></td><td background='win/Interface/001/btn1_midle.gif' align="center" class="Backgrounddarkblue"><a href="http://www.groopy.be/community.asp?H=63625EAE64767B780C04000C16787C720401136574710905147460670C0C127A7D0802051F79667B0405127A7361660800AB"><font class="S36">Proposez un album photo ou un dossier </font></a></td><td width="6"><img src='win/Interface/001/btn1_right.gif'  width="6" height="17" border="0"></td></tr></table></td></tr></table></div><table width="100%" cellspacing='0' cellpadding='0' border='0'><tr height='14'><td width='12'><img src='win/Interface/001/left_line2.gif'  width='202' height='14' border='0'></td><td width='100%' background='win/Interface/001/back_line2.gif'><img src="win/Interface/001/back_line2.gif"></td></tr></table><br><br> 	</td> 	<td width=2%></td> 	<td width=49% valign=top> 		 	</td> 	</tr> 	 	<tr> 	<td width=49% valign=top> 		 	</td> 	<td width=2%></td> 	<td width=49% valign=top> 		 	</td> 	</tr> 	 	<tr> 	<td width=49% valign=top> 		 	</td> 	<td width=2%></td> 	<td width=49% valign=top> 		 	</td> 	</tr> 	  	</table></center> 	 	<table cellspacing=10 width=100%><tr> <td height="4" background="win/Interface/001/point_hp.gif"><img src="win/Interface/001/point_hp.gif"></td> </tr></table> 	 		<table border=0 cellspacing=10 width=48%><tr><td width=100% valign=top align=center> 		<tr><td><table  cellspacing='0' cellpadding='0' ><tr><td rowspan=2 valign=top width=50><A href=http://www.groopy.be/community.asp?H=7B23514424767A7B0B04040C17787C7004019A><img src='win/Interface/001/hom_for.gif' border=0 alt='' > </a></td><td valign=bottom><A href=http://www.groopy.be/community.asp?H=CCAE6C324F75787B0A07010F1F787B720A0101><font class="modtitle">Forum</font></a></td></tr><tr height='3'><td width='100%' background='win/Interface/001/back_line.gif'><img src='win/Interface/001/back_line.gif'></td><td width='12'><img src='win/Interface/001/right_line.gif'  width='12' height='3' border='0'></td></tr><tr></tr><tr><td></td></tr></table></b></b><font class="LinkHomepage">[Pas de forum en ce moment]</font><br><br><table width="100%"><tr><td><div align=right><table  cellspacing="0" cellpadding="0" border="0"><tr height="17" align="right"><td width="6"><img src='win/Interface/001/btn1_left.gif'  width="6" height="17" border="0"></td><td background='win/Interface/001/btn1_midle.gif' align="center" class="Backgrounddarkblue"><a href="http://www.groopy.be/community.asp?H=60E6595FDF767B7905070D0C12787C710A0115647D720506001375606A0B091378637F086B"><font class="S36">Initiez une nouvelle discussion!</font></a></td><td width="6"><img src='win/Interface/001/btn1_right.gif'  width="6" height="17" border="0"></td></tr></table></td></tr></table></div><table width="100%" cellspacing='0' cellpadding='0' border='0'><tr height='14'><td width='12'><img src='win/Interface/001/left_line2.gif'  width='202' height='14' border='0'></td><td width='100%' background='win/Interface/001/back_line2.gif'><img src="win/Interface/001/back_line2.gif"></td></tr></table><br><br><br></td></tr> </table> 	 	</center>  						</td> 						<td valign="top" background="win/Interface/001/cadre.gif" align="left"  width="1"> 						<img src="win/Interface/001/cadre.gif"></td> 					</tr> 								<tr> 								<td><img src="win/Interface/001/cadre.gif"></td> 								<td background="win/Interface/001/cadre.gif"  valign="bottom" align="left"> 								<img src="win/Interface/001/cadre.gif"></td> 								<td><img src="win/Interface/001/cadre.gif"></td> 								</tr>						 				</table> 				</center> 		  		</td> 	</tr> 	</table> 	<center> 	<img src="http://line06.metriweb.be/log/nous/mw.cgi?page=COM" width="1" height="1"> <BR>  <table border="0" cellspacing="0" cellpadding="0"  class=Whitebackground> <tr> <td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=00E34A552377777905070D0C17787D720804A2><font class="S1smaller">Webzine</font></a>&nbsp;</td><td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=D794413A417577780804030C14787D70040691><font class="S1smaller">Liens</font></a>&nbsp;</td><td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=8B0345704E76797B0B050C0C17787D710E01C9><font class="S1smaller">Forum</font></a>&nbsp;</td><td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=088AE176577777780B04020F137B767004009E><font class="S1smaller">Annonces</font></a>&nbsp;</td><td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=8A64A9CE3376797B0804000C147B7A710A0EE4><font class="S1smaller">Agenda</font></a>&nbsp;</td><td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=7B6CAE5703767A7B0B04000F117B7A72040CE4><font class="S1smaller">Chat</font></a>&nbsp;</td><td class=VeryLightBlue>&nbsp;<a href=http://www.groopy.be/community.asp?H=39595D16D2767E780A04070C11787C7205050A26><font class="S1smaller">Fichiers</font></a>&nbsp;</td></tr></table> 	</center>  	 </td> <td vAlign="top" align="right" class="Backgrounddarkblue" width=115> 	<!--06/12/2002 ok JM--> <table width=115 border=0 cellpadding=0 cellspacing=0><TR><td background='win/Interface/001/background_9.gif' colspan=2 height=25><center><b><font class="S33">Moi et ...</font></b></center></td></tr><TR><td background='win/Interface/001/background_10.gif' colspan=2><font class=S1smaller><b>Cinmagic  </b></font></td></tr><TR><td background='win/Interface/001/background_10.gif' colspan=2><font class="S1">Vous tes :</font></td></tr><TR><TD background='win/Interface/001/anim_haut.gif' height=5 colspan=2><img src='win/Interface/001/anim_haut.gif'></td></tr><tr><td><table width='115' border=0 cellpadding=0 cellspacing=0><tr><td background='win/Interface/001/background_11.gif' width='100%'><table width='115' border=0 cellpadding=0 cellspacing=0 align=center><TR><TD align=left></TD><TD><a href = 'http://www.groopy.be/community.asp?H=5B372FD4A8767C7B0B04050C13787F730D061E667F720805107467640B05176661740D05051071780F02EF'><font class="S34"> Animateur</font></a></TD></TR><TR><TD align=left></TD><TD><a href = 'http://www.groopy.be/community.asp?H=938F8F24567678780C04020E167879730D0516667F710E05127463670C05106464740B05051379780F00BE'><font class="S34">Anim. dlgu</font></a></TD></TR><TR><TD align=left></TD><TD><a href = 'http://www.groopy.be/community.asp?H=E01569461975767905050D0C15787B710A0514667970040511776D6605041F666774090702137B7809079D'><font class="S34"> Membre</font></a></TD></TR><TR><TD align=left></TD><TD><a href = 'http://www.groopy.be/community.asp?H=91C406A1DB7678790407030C14797771090613677472050610746366040611666675050701107C79040467'><font class="S34">Identifi</font></a></TD></TR><TR><TD align=left><img src='win/Interface/001/fleche.gif'></TD><TD><a href = 'http://www.groopy.be/community.asp?H=8048B749687679790504060C107B7971080514667A710905107462660505146662770B0700137B780A0480'><font class="S35">Anonyme</font></a></TD></TR><tr><TD background='win/Interface/001/anim_bas.gif' height=4 colspan=2><img src='win/Interface/001/anim_bas.gif'></td></tr><tr><td colspan=2><table width='115' cellspacing='0' cellpadding='0' border='0'><tr><td width='8'><img src='win/Interface/001/boutons_inscr_left.gif' alt='' width='8' height='19' border='0'></td><td width='100%' background='win/Interface/001/boutons_inscr_middle.gif' align='center' valign='middle'><center><a href=http://www.groopy.be/community.asp?H=3E11C78751767E7B04050D0D1F7B78710805106678710E041F74656404041F676D770A04137C7B080490><font class="S35">Devenir membre</font></a></td><td width='8'><img src='win/Interface/001/boutons_inscr_right.gif' alt='' width='7' height='19' border='0'></td></tr></table></td></tr></table></td></tr></table></td></tr></table><table  width=115 border=0 cellpadding=0 cellspacing=0> <tr><td colspan=2  background='win/Interface/001/pointille_dr.gif' height=7'><img src='win/Interface/001/pointille_dr.gif'></td></tr> 	<form method=post action="http://www.groopy.be/community.asp?H=C32A3216637578780C04040F13787E710D050C1367787008018C" name=form1><tr><td colspan=2 background='win/Interface/001/background_10.gif'>&nbsp;<font size=1><b><font class="S5">Rechercher</font></b><br> 			<script> 			var bName = navigator.appName.toUpperCase(); 			if ((bName.indexOf("NETSCAPE") != -1)) 				{ 				document.write("&nbsp;<input class='nonAlignMainTextNormal' type='Text' id='text5' name='word1' size='7' maxLength=24>&nbsp;"); 				} 			else 				{ 				document.write("&nbsp;<input class='nonAlignMainTextNormal' type='Text' id='text5' name='word1' size='9' maxLength=24>&nbsp;"); 				}			 			</script> 			<input type="hidden" name="type_search" value="1"><input type='image' border="0" src='win/Interface/001/ok_droite.gif' value='ok'></td></tr></form><tr><td colspan=2 background='win/Interface/001/pointille_dr.gif' height=7'><img src='win/Interface/001/pointille_dr.gif'></td></tr> 	<tr> 	<td colspan=2 background='win/Interface/001/background_10.gif' align=left width=115> 	<table width=115 border=0 cellpadding=0 cellspacing=0><tr><td background='win/Interface/001/background_10.gif' align=left width=115> 	<table width=115 border=0 cellpadding=0 cellspacing=0><tr><td> 	&nbsp;<img src="win/Interface/001/info_com2.gif" border="0" alt="Informations sur cette communaut"> 	</td> 	<td align="center"> 		 	<a href="http://www.groopy.be/community.asp?H=C1487E6B2D7578790404060C10787A72040D0C0E10667D72050611676D740F05B2"><font class="S5">Informations sur cette communaut</font></a> 	</tr></table> 	</td></tr></table> 	</td> 	</tr> 	<tr> 	<td background='win/Interface/001/bas_droite.gif' align=left width=115 height=15><img src='win/Interface/001/bas_droite.gif'><td> </tr> </table> <!--06/12/2002 ok JM--> <!--06/12/2002 ok JM--> <TABLE  bgcolor="#31659C"' width="114" cellspacing="0" cellpadding="0"> 	<TR> 		<TD  bgcolor="#31659C" colspan="2">&nbsp; 			<font class="S32">Top 10</font> 			 		</TD> 	</TR> 	<TR> 		<TD  bgcolor="#31659C"> 			<TABLE width='100%'  bgcolor="#31659C"> 				<tr><td valign='top'><font color=#FFCC33>1</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=3932'><font color=#ffffff size=-2>DVD passion</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>2</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=1119'><font color=#ffffff size=-2>Film-amateur</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>3</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=6388'><font color=#ffffff size=-2>Gabriel Wigny</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>4</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=2116'><font color=#ffffff size=-2>La magie blanche</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>5</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=4236'><font color=#ffffff size=-2>Dour Camping Festival</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>6</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=2208'><font color=#ffffff size=-2>Aide en ligne</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>7</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=2983'><font color=#ffffff size=-2>binche</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>8</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=6846'><font color=#ffffff size=-2>Eurovolley</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>9</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=4239'><font color=#ffffff size=-2>Les bijoux de Charlotte</a></font></td></tr> <tr><td valign='top'><font color=#FFCC33>10</td><td><font size=1><a href='http://www.groopy.be/community.asp?COM=6974'><font color=#ffffff size=-2>GraPPahutteurs</a></font></td></tr>  					<!--- <TR> tags are built within topComs.inc  ---> 				  			</TABLE> 		</TD> 	</TR> </TABLE> 	 		<br> 		<table cellspacing="0" cellpadding="0" border="0" width="100%"> 			<tr> 			    <td align="left"><img src="win/Interface/001/shop_haut.gif" width="116" height="6" alt="" border="0"></td> 			</tr> 			<tr> 				<td bgcolor="#73AADE"> 					<script> var bName = navigator.appName.toUpperCase(); if ((bName.indexOf("NETSCAPE") != -1)) { var vName = navigator.appVersion.toUpperCase(); version = vName.substring(0,1); if (version < 5) { } else { document.write('<iframe name="iframeshopping" scrolling="no" width="115" height="165" frameborder="0" src="http://map.skynet.be/topics/skyshop2002/cgipublic/sitegener/sthumbs_groopy_all_com_fr.htm"></iframe>'); } } else { document.write('<iframe name="iframeshopping" scrolling="no" width="115" height="165" frameborder="0" src="http://map.skynet.be/topics/skyshop2002/cgipublic/sitegener/sthumbs_groopy_all_com_fr.htm"></iframe>'); } </script>  	 			</td> 			</tr> 			<tr> 	    		<td><img src="win/Interface/001/shop_bas.gif" width="116" height="6" alt="" border="0"></td> 			</tr> 		</table><br> 	 </td> </tr> <tr> <td background="win/Interface/001/background_3.gif" width="116" align="left"> <img src="win/Interface/001/background_4.gif" width="116" alt="" border="0" > </td> <td> </td> <td class="Backgrounddarkblue" width="115" align="right"> <img src="win/Interface/001/dessin_bas_droite.gif" width="115" alt="" border="0" > </td> </tr> <tr> 	<td colspan = 3 WIDTH=100% class="Backgrounddarkbluefooter"> 	<!--06/12/2002 ok JM-->  <div align="right"> <font class='S34'>Belgacom-Skynet (c) 2000-2002&nbsp;&nbsp;</font> </div>     	</td> </tr> </table> <!--Temps d'excution de community.asp : 2.515625-->   </body> </html>   <!---4/22/2003 5:03:21 PM ---> <!-- MONITORCHECK -->    
