<!-- Start index.nhtml - Version 6.0.1 --> <HTML> <HEAD> <!-- Start incviewheader.nhtml - Version 6.0.1 --> <TITLE>Cycle CONNAISSANCE du CORAN</TITLE>  <script><!-- //--></script> <link rel="P3Pv1" href="http://ebiz.netopia.com/op_montpellier/pages/addons/w3c/p3p.xml"> <!-- End incviewheader.nhtml - Version 6.0.1 --> <SCRIPT><!-- // Copyright (C) 1997-2002 Netopia, Inc. // All rights reserved. function reloadPage(init)  {   if (init==true) with (navigator) { if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.pageWidth=innerWidth; document.pageHeight=innerHeight; onresize=reloadPage;  } } else if (innerWidth!=document.pageWidth || innerHeight!=document.pageHeight) location.reload(); } reloadPage(true); var	zeros = "00000000000000000000" var baseCalendarYear = 1996; var maxCalendarYear = 2036; var minCalendarYear = 1970; function ZeroPadNum(n, length) { var		s = ""; s = "" + n; return (zeros.substring(0, length - s.length) + s); } function StdStringToDate(ds) { var		s = ""; s = ds.substring(4,6) + "/" + ds.substring(6,8) + "/" + ds.substring(0,4) + " " + ds.substring(8,10) + ":" + ds.substring(10,12) + ":" + ds.substring(12,14); return new Date(s); } function DateToDateString(date) { var		s; s = date.toString(); year = date.getYear() < 1900 ? date.getYear() + 1900 : date.getYear(); return  ZeroPadNum(year, 4) + ZeroPadNum(date.getMonth() + 1, 2) +  ZeroPadNum(date.getDate(), 2); } function DateToDateTimeString(date) { if (isNaN(date.getYear())) return ""; year = date.getYear() < 1900 ? date.getYear() + 1900 : date.getYear(); return  ZeroPadNum(year, 4) + ZeroPadNum(date.getMonth() + 1, 2) +  ZeroPadNum(date.getDate(), 2) +  ZeroPadNum(date.getHours(), 2) +  ZeroPadNum(date.getMinutes(), 2) +  ZeroPadNum(date.getSeconds(), 2); } function GetSelectedDate(querydate) { var     curdate = new Date(); var     ds = DateToDateString(curdate); month = document.nvoForm.selmonth.selectedIndex + 1; if (month > 12) month = 1; day = document.nvoForm.selday.selectedIndex + 1; if (day > 31) day = 1; year = parseInt(document.nvoForm.selyear.selectedIndex) + parseInt(baseCalendarYear); if (year > maxCalendarYear)  year = maxCalendarYear;   if (year < minCalendarYear) year = minCalendarYear; if (year < baseCalendarYear) { alert("The year for your requested date cannot be displayed in the year pull-down menu."); if (querydate != "") year = querydate.substring(0,4); } ds = ZeroPadNum(year, 4) + ZeroPadNum(month, 2) + ZeroPadNum(day, 2); odate = StdStringToDate(ds); newds = DateToDateString(odate); if (newds != ds) { alert("You have requested an invalid date. A valid date will be used instead."); if (querydate != "") { ds = querydate; } } return ds;    } function GotoYear(querydate) { location.href = "/op_montpellier/coran" + "/year.nhtml?date=" + GetSelectedDate(querydate); } function GotoMonth(querydate) { location.href = "/op_montpellier/coran" + "/index.nhtml?date=" + GetSelectedDate(querydate); } function GotoWeek(querydate) { location.href = "/op_montpellier/coran" + "/week.nhtml?date=" + GetSelectedDate(querydate); } function GotoDay(querydate) { location.href = "/op_montpellier/coran" + "/day.nhtml?date=" + GetSelectedDate(querydate); } function GotoDate(uri) { if (uri.indexOf("event.nhtml") >= 0) { uri = "/op_montpellier/coran" + "/day.nhtml"; } location.href = uri + "?date=" + GetSelectedDate(''); } function DoViewToday(uri) { if (uri.indexOf("event.nhtml") >= 0) { uri = "/op_montpellier/coran" + "/day.nhtml"; } date = new Date; location.href = uri + "?date=" + DateToDateString(date); } function DoNewEvent(querydate, query) { if (query == null) query = ""; location.href = "/op_montpellier/coran" + "/eventedit.nhtml?date=" + GetSelectedDate(querydate) + query; } function DoSearch(querydate) { location.href = "/op_montpellier/coran" + "/search.nhtml?date=" + GetSelectedDate(querydate); } function SetSelectedDay(datestr) { var status = "true"; date  = StdStringToDate(datestr); day   = date.getDate(); month = date.getMonth(); year  = date.getYear() < 1900 ? date.getYear() + 1900 : date.getYear(); document.nvoForm.selday.selectedIndex = day - 1; if (year > maxCalendarYear) { alert("You have requested an invalid date. A valid date will be used instead."); document.nvoForm.selyear.selectedIndex = maxCalendarYear - baseCalendarYear status = false; } else { document.nvoForm.selyear.selectedIndex = year - baseCalendarYear; } document.nvoForm.selmonth.selectedIndex = month; return status; } function DoVerifiedGoto(uri, querydate) { date = StdStringToDate(querydate);     year = date.getYear() < 1900 ? date.getYear() + 1900 : date.getYear(); if (year > maxCalendarYear) { alert("You have requested an invalid date. A valid date will be used instead."); querydate = GetSelectedDate(''); } if (year < minCalendarYear) { alert("You have requested an invalid date. A valid date will be used instead."); querydate = GetSelectedDate(''); } location.href = uri + "?date=" + querydate; } function DoVerifiedPrev(uri, querydate) { DoVerifiedGoto(uri, querydate); } function DoVerifiedNext(uri, querydate) { DoVerifiedGoto(uri, querydate); } function MinutesToHours(minutes) { var minuteString = "Mins."; var hourString = "Hrs."; var hours = ""; var mins = ""; if (minutes != "") { if(minutes < 59) { hours = ""; hourString = ""; mins = minutes%60; } else { hours = minutes/60 mins = minutes%60; if (mins == 0) { minuteString = ""; mins = ""; } } document.writeln(parseInt(hours) + ' ' + hourString + ' ' + mins + ' ' + minuteString); } } function SmartDuration(eventDate,eventMinutes,bStopAtMidnight) { var dateString = new String(eventDate); var date = new Date(StdStringToDate(dateString)); var totalmins = ""; var endHour = ""; var endMin = ""; var timeSuffix = ""; totalmins = date.getHours() * 60 + date.getMinutes() + eventMinutes; endMin  = ((bStopAtMidnight != null && bStopAtMidnight != false) ? 0 : totalmins%60); endHour = totalmins/60; if (endHour >= 24) endHour = ((bStopAtMidnight != null && bStopAtMidnight != false) ? 0 : Math.floor(endHour%24)); else endHour = Math.floor(endHour); if (endHour < 12) timeSuffix = "AM"; if (endHour >= 12) { if (endHour > 12) endHour -= 12; timeSuffix = "PM"; } if (parseInt(endHour) == 0) endHour = 12; document.writeln( ZeroPadNum(parseInt(endHour), 2) + ":" + ZeroPadNum(parseInt(endMin), 2) + " " + timeSuffix); } function IsEventOverMidnight(eventDate, eventMinutes) { var dateString = new String(eventDate); var date       = new Date(StdStringToDate(dateString)); if ((parseInt(date.getHours() * 60) + parseInt(date.getMinutes()) + parseInt(eventMinutes)) > 1440) return true; else return false; } function GetDaysInMonth(desiredDate) {        var retVal; var now = new Date(); var millisecondsPerDay = 24 * 60 * 60 * 1000; now.setMonth(desiredDate.getMonth()+1); do           { now.setTime(now.getTime() - millisecondsPerDay); retVal = now.getDate(); }                     while ( desiredDate.getMonth() != now.getMonth() ) if ( ((desiredDate.getFullYear() % 4 ) == 0) && ((desiredDate.getFullYear() % 1000 ) != 0) && (desiredDate.getMonth() == 1) ) { retVal++; } return retVal; } function GetDaysInMonthByDateString(theDateString) {        var theYear  = theDateString.substring(0,4) var theMonth = theDateString.substring(4,6) var firstDateOfMonth = new Date(theYear, theMonth - 1, 1); return(GetDaysInMonth(firstDateOfMonth)); } function fillDateSelector(requestedDate, monthElementName, dayElementName, yearElementName, formName, bAllowBlank, bInitBlank) { var theForm = ((formName != null) ? findFormByName(formName) : document.nvoForm); if (theForm) { monthElement = ((monthElementName != null) ? theForm[monthElementName] : theForm.selmonth); dayElement   = ((dayElementName != null) ? theForm[dayElementName] : theForm.selday); yearElement = ((yearElementName != null) ? theForm[yearElementName] : theForm.selyear); } if ((monthElement == null) || (dayElement == null) || (yearElement == null)) return; if (requestedDate) var currDate = requestedDate; else var currDate = "20030423074816"; var strMonth = new Array; strMonth[0] = "Invalid Month"; strMonth[1] = "January"; strMonth[2] = "February"; strMonth[3] = "March"; strMonth[4] = "April"; strMonth[5] = "May"; strMonth[6] = "June"; strMonth[7] = "July"; strMonth[8] = "August"; strMonth[9] = "September"; strMonth[10] = "October"; strMonth[11] = "November"; strMonth[12] = "December"; var currYear = currDate.substring(0,4); var currMonth= currDate.substring(4,6); var currDay  = currDate.substring(6,8); if (currYear < baseCalendarYear) baseCalendarYear = currYear; if (currYear > maxCalendarYear) { alert("You have requested an invalid date. A valid date will be used instead."); currYear = maxCalendarYear; } var firstDateOfMonth = new Date(currYear, currMonth - 1, 1); var daysInMonth      = GetDaysInMonth(firstDateOfMonth); var year = baseCalendarYear; var month = 1; var day = 1; var initialYearIndex = 0; var initialMonthIndex = 0; var initialDayIndex = 0; yearElement.options.length = 0; monthElement.options.length = 0; dayElement.options.length = 0;  for (var i = 0; i < 12; i++) { if (month == currMonth) initialMonthIndex = i; monthElement.options[i] = new Option(strMonth[i+1],month); month++; }  for (var i = 0; i < daysInMonth; i++) { if (day == currDay) initialDayIndex = i; dayElement.options[i] = new Option(day,day); day++; } for (var i = 0; i < ((maxCalendarYear - baseCalendarYear) + 1); i++) { if (year == currYear) initialYearIndex = i; yearElement.options[i] = new Option(year,year); year++; } if ((bAllowBlank != null) && bAllowBlank) { monthElement.options[12] = new Option("",""); dayElement.options[daysInMonth] = new Option("",""); yearElement.options[((maxCalendarYear - baseCalendarYear) + 1)] = new Option("",""); if (bInitBlank) { initialMonthIndex = 12; initialDayIndex = daysInMonth; initialYearIndex = (maxCalendarYear - baseCalendarYear) + 1; } } monthElement.selectedIndex = initialMonthIndex; dayElement.selectedIndex   = initialDayIndex; yearElement.selectedIndex  = initialYearIndex; }         function ChangeDaysInMonth(monthElementName, dayElementName, yearElementName, formName) { var theForm = ((formName != null) ? findFormByName(formName) : document.nvoForm); if (theForm != null) { monthElement = ((monthElementName != null) ? theForm[monthElementName] : theForm.selmonth); dayElement   = ((dayElementName != null) ? theForm[dayElementName] : theForm.selday); yearElement = ((yearElementName != null) ? theForm[yearElementName] : theForm.selyear); } if ((monthElement == null) || (dayElement == null) || (yearElement == null)) return; var selectedMonth   = monthElement.options[monthElement.selectedIndex].value; var selectedYear    = yearElement.options[yearElement.selectedIndex].value; var theDate         = new Date(selectedYear, selectedMonth-1, 1); var daysInMonth     = GetDaysInMonth(theDate); var initialDayIndex = dayElement.selectedIndex; if (initialDayIndex > (daysInMonth-1))  initialDayIndex = daysInMonth-1; dayElement.options.length = 0; for (var i = 0; i < daysInMonth; i++) { var day = i+1; if (initialDayIndex == i) initialDayIndex = i; dayElement.options[i] = new Option(day,day); } dayElement.selectedIndex = initialDayIndex; } // this is javascript for the newsletter object function reloadPage(init) //reloads the window if Nav4 is resized {   if (init==true) with (navigator) { if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.pageWidth=innerWidth; document.pageHeight=innerHeight; onresize=reloadPage;  } } else if (innerWidth!=document.pageWidth || innerHeight!=document.pageHeight) location.reload(); } reloadPage(true); function ViewMonth() { var seemonth = ZeroPadNum((document.monthForm.newsmonth.selectedIndex + 1),2); var seeday = ZeroPadNum((document.monthForm.newsday.selectedIndex + 1),2); var seeyear = ZeroPadNum(document.monthForm.newsyear.selectedIndex + baseCalendarYear ,4); var date = seeyear + seemonth + seeday + "0000"; location.href = "/op_montpellier/coran/?date=" + date + "&month=" + seemonth + "&day=" + seeday + "&year=" + seeyear; } function SetSelectedNewsDay() { document.monthForm.newsyear.selectedIndex = parseInt() - (baseCalendarYear - 1); document.monthForm.newsmonth.selectedIndex = parseInt(); } function DoOnLoad() { fillDateSelector("", "newsmonth", "newsday", "newsyear", "monthForm", false, false); } //--></SCRIPT> </HEAD> <!-- Start vheader.nhtml - Version 6.0.1 --> <!-- Start BNIsDeleted.nhtml - Version 6.0.1 --> <!-- End BNIsDeleted.nhtml - Version 6.0.1 --> <SCRIPT SRC="/op_montpellier/pages/common/global.js"></SCRIPT> <!-- Start incsettingsversion.nhtml - Version 6.0.1 --> <!-- End incsettingsversion.nhtml - Version 6.0.1 --> <!-- Start incfcdefaults.nhtml - Version 6.0.1 --> <!-- End incfcdefaults.nhtml - Version 6.0.1 --> <!-- Start incfcdefaultsfootnav.nhtml - Version 6.0.1 --> <!-- End incfcdefaultsfootnav.nhtml - Version 6.0.1 --> <body  MARGINWIDTH="0" MARGINHEIGHT="0" TOPMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="10"   bgcolor="#FFFFFF"  link="#0000FF" vlink="#008000" > <!-- Start inccheckminversion.nhtml - Version 5.3 --> <center> <table width="580" border=5 cellspacing=0 cellpadding=5 bordercolor="red" bgcolor=#ffffff> <tr> <td valign=top> <b> <center> <h2><font color=#ff0000>Caution!</font></h2> </center> Visiting this web site requires a newer version of Netscape Communicator. <br><br> Visit <a href='http://www.microsoft.com'>Microsoft's Web site</a> to obtain the newest version of Internet Explorer, or visit <a href='http://www.netscape.com'>Netscape's Web site</a> to obtain the newest version of Netscape Communicator.<br> <br> Visiting this web site without first upgrading your browser may result in unreliable behavior.<br> <br> </b> </td> </tr> </table> </center> <br> <HR> <br> <!-- End inccheckminversion.nhtml - Version 5.3 --> <!-- Start incheader.nhtml - Version 6.0.1_TT7218 --> <style type="text/css"> <!-- 	.alertbig		{  font-family: Arial, Helvetica, sans-serif; font-size: 18px;	font-weight: bold; color: #FF0000 } 	.title			{  font-family: Arial, Helvetica, sans-serif; font-size: 14px;	font-weight: bold; color: #00009C } 	.section		{  font-family: Arial, Helvetica, sans-serif; font-size: 14px;	font-weight: bold} 	.heading		{  font-family: Arial, Helvetica, sans-serif; font-size: 13px;	font-weight: bold} 	.headingred		{  font-family: Arial, Helvetica, sans-serif; font-size: 13px;	font-weight: bold; color: #FF0000 } 	.normal			{  font-family: Arial, Helvetica, sans-serif; font-size: 12px;	font-weight: normal} 	.normalwhite	{  font-family: Arial, Helvetica, sans-serif; font-size: 12px;	font-weight: normal; color: #FFFFFF } 	.smallprint		{  font-family: Arial, Helvetica, sans-serif; font-size: 11px;  font-weight: normal} 	.smallprintwhite{  font-family: Arial, Helvetica, sans-serif; font-size: 11px;  font-weight: normal; color: #FFFFFF }  	.select			{  font-family: Arial, Helvetica, sans-serif; font-size: 12px;  font-weight: normal} 	.button			{  font-family: Arial, Helvetica, sans-serif; font-size: 12px;  font-weight: normal} 	 	.textinput   	{  font-family: Courier New, Courier, mono;   font-size: 13px;  font-weight: normal} 	.checkbox       {  font-family: Arial, Helvetica, sans-serif; font-size: 12px;  font-weight: normal}  	.tabhilite		{  font-family: Arial, Helvetica, sans-serif; font-size: 18px;	font-weight: bold;   color: #FFFFFF } 	.tabnormal		{  font-family: Arial, Helvetica, sans-serif; font-size: 12px;	font-weight: normal; color: #00009C } 	.tabsubtext		{  font-family: Arial, Helvetica, sans-serif; font-size: 14px;	font-weight: normal; color: #FFFFFF } 	 	.navbartitle 	{color: #00FF00; font-family: Arial, Helvetica, sans-serif; font-size: 9pt; font-weight:bold} 	.nounderline 	{text-decoration:none; color:#000000; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold}  	.underline 		{color: #0033CC; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold} 	.underline:hover{background-color: #99CC99}	  	.signout 		{color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight:bold} 	.signout:visited{color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight:bold} 	.signout:hover 	{color: #FF0000} 	.signout:visited{color: #FFFFFF} 	.signout:active	{color: #FFFFFF}  	.help 			{color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight:bold} 	.help:visited	{color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight:bold} 	.help:hover 	{color: #00FF00} 	.help:visited 	{color: #FFFFFF} 	.help:active 	{color: #FFFFFF}  	.home 			{color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif, sans-serif; font-size: 9pt; font-weight:bold} 	.home:visited	{color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif, sans-serif; font-size: 9pt; font-weight:bold}	 	.home:hover 	{color: #00FF00} 	.home:active 	{color: #FFFFFF}  	.editview 		{color: #0033CC; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold}  	.evlink 		{color: #0033CC; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold} 	.evlink:hover 	{background-color: #99CC99}  	.disabled 		{color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold}  	.reverseRed 	{ font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #FFFFFF; background-color: #FF0000} 	.reverseOrange 	{ font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #FFFFFF; background-color: #FF9900}  	.catListing 	{BACKGROUND-COLOR: #dddddd; COLOR: #333333; FONT-FAMILY: Arial, Helvetica, sans-serif; font-size: 11px;} 	 	 	.siteListing 		{BACKGROUND-COLOR: #eeeeee; COLOR: #333333; FONT-FAMILY: Arial, Helvetica, sans-serif; font-size: 7.5pt;} 	.siteListingSec 	{BACKGROUND-COLOR: #eeeeee; COLOR: #FF0000; FONT-FAMILY: Arial, Helvetica, sans-serif; font-size: 7.5pt;} 	.siteListingLv1		{BACKGROUND-COLOR: #eeeeee; COLOR: #000066; FONT-FAMILY: Arial, Helvetica, sans-serif; font-size: 7.5pt;} 	.siteListingLv2		{BACKGROUND-COLOR: #eeeeee; COLOR: #004400; FONT-FAMILY: Arial, Helvetica, sans-serif; font-size: 7.5pt;}	  	.qbbordercolor 	{color: #666666} 	.qbmenuhead		{text-decoration:none; color:#000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 7pt; font-weight: bold} 	.qbmenufont		{font-size: 7pt; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: none; cursor: hand; color: #000000} 	.qbsubmenudef	{display:none; position:absolute; width:160; border:1px solid #666666; background-image: url(/op_montpellier/pages/images/incnavbarmenubg.jpg); background-color: #f0f8ff; padding-top:0; padding-left:0; padding-bottom:10; z-index:9} 	 	B {font-weight: bold} 	SMALL {font-size: 10px} --> </style> <SCRIPT><!-- var editServer   = "http://ebiz.netopia.com"; var viewServer   = "http://ebiz.netopia.com"; var secureServer = ""; if (viewServer == "")  viewServer = editServer; if (secureServer == "") secureServer = editServer; if (viewServer.substring(viewServer.indexOf("//")+2) != document.domain && editServer.substring(editServer.indexOf("//")+2) != document.domain && secureServer.substring(secureServer.indexOf("//")+2) != document.domain) { document.cookie = "nssop_montpellierset=true; path=/;"; document.cookie = "nsscustdom=ebiz.netopia.com,http://ebiz.netopia.com/op_montpellier; path=/;"; location.replace("http://ebiz.netopia.com/op_montpellier/pages/common/setdomaincookie.nhtml?domain=ebiz.netopia.com&return=" + escape(location.href)); } //--></SCRIPT> <!-- End incheader.nhtml - Version 6.0.1_TT7218 --> <table border=0 cellpadding=0 width=100% cellspacing=0> <tr> <td width=140 bgcolor="#FFFFFF"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="140" HEIGHT="1" BORDER="0"><br> </td> <td colspan=2 width=455> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="455" HEIGHT="1" BORDER="0"><br> </td> <td rowspan=7> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td width=110 align="center" valign=top bgcolor="#FFFFFF"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="10" BORDER="0"><br> <a href="/op_montpellier/"><img src="/op_montpellier/nss-folder/images/si_UEw100_Entreejpg.jpg" width="99" height="184"        border=0></a><br> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="10" BORDER="0"><br> <!-- Side-bar nav calls --> <table cellpadding=0 cellspacing=0 border=0> <tr> <td rowspan=500> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="5" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td colspan=2> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="110" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td colspan=2> <br> <font face="arial,helvetica,sans-serif" size="2" COLOR="#999999"> <b>INDEX</b> </font> </td> </tr> <tr> <td colspan=2 width=140 bgcolor="#999999"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="140" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/door/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> montpellier.dominicains.com </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/faqaboutus/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Qui sommes-nous? </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/fellowship1/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Membres de la Communaut </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/contactinformation/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Nous contacter </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/noustrouver/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Nous trouver </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/worship/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Eglise </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/uneeglisedanslacite200212003/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Une glise dans la cit 2002-2003 </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/chorale/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Chorale </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/orgue/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Orgue </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/chantiersencours/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Chantiers en cours </font> </A> </td> </tr> <tr> <td colspan=2> <br> <font face="arial,helvetica,sans-serif" size="2" COLOR="#999999"> <b>COMMUNICATIONS</b> </font> </td> </tr> <tr> <td colspan=2 width=140 bgcolor="#999999"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="140" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/calendar/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Calendrier </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/formations/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Formations </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/outreachservices1/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Centre Lacordaire </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/cesa1centredetudestaugustin/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> C.E.S.A. - Centre d'tude St-Augustin </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/perpignan/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Perpignan </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/sete/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Ste </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/st1jeandevedas/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> St-Jean de Vdas </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/coran/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> ISLAM </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/services/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Services </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/ministries/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Rosaire </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/familledominicaine/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Famille Dominicaine </font> </A> </td> </tr> <tr> <td colspan=2> <br> <font face="arial,helvetica,sans-serif" size="2" COLOR="#999999"> <b>SITE INTERNET</b> </font> </td> </tr> <tr> <td colspan=2 width=140 bgcolor="#999999"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="140" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/folder/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Documents </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/usefullinks/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Liens </font> </A> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=top> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="105" HEIGHT="5" BORDER="0"><br> <A HREF="/op_montpellier/images/"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Images </font> </A> </td> </tr> <tr> <td colspan=2 width=140> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="30" BORDER="0"><br> </td> </tr> <tr> <td width=25 valign=top align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="10" BORDER="0"><br> </td> <td width=105 valign=middle> <a href="/op_montpellier/looks/sitemap.nhtml"> <font face="arial,helvetica,sans-serif" size="1" COLOR="#6b6363"> Sitemap<br> </font> </a> </td> </tr> <!--<tr> <td colspan="2"><br> <form name="prodSearch"> <table border="0" cellpadding="2" cellspacing="0"> <tr> <td> <font face="arial,helvetica,sans-serif" size="2" COLOR="#999999"><b>Product Search</b></font></td> </tr> <tr> <td> //{{{NVO-ACTION UseProfile(Profile=:nss-store&ReturnError=:TRUE) }}} <SELECT style="font-size: 9pt" class="normal" NAME="whichchain"> //{{{LIST-TEMPLATE SelectAll(List=:Category) <OPTION VALUE=""></option> //}}}LIST-TEMPLATE </SELECT></td> </tr> <tr> <td> <input style="font-size: 9pt" type=text name=keywords size=17> </td> </tr> <tr> <td> <font size="1"><input style="font-size: 9pt" type=button name="search" value="Search" onClick="DoSearch()"></font> </td> </tr> </table> </form> </td> </tr>--> </table> <br> <br> <!-- end Side-bar nav calls --> </td> <td width=3 bgcolor="#999999"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="3" HEIGHT="250" BORDER="0"><br> </td> <td width="100%" valign="top"> <!-- Three column table for: left gutter, content, right gutter --> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <!-- left gutter --> <td colspan=3> <table border=0 cellpadding=0 width=100% cellspacing="0"> <tr> <td valign=top colspan=2 align=center> <font face="arial,helvetica,sans-serif" size="2" COLOR="#000000"> <!-- Start BNBannerInsert.nhtml - Version 6.0.1 --> <!-- End BNBannerInsert.nhtml - Version 6.0.1 --> </font> </td> </tr> <tr> <td valign=bottom> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="3" BORDER="0"><br> <table><tr><td><IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="6" HEIGHT="1" BORDER="0"></td> <td> <FONT FACE="arial,helvetica,sans-serif" SIZE="4" COLOR="#999999"> &nbsp;&nbsp;<b>ISLAM</b><br> </FONT> </td></tr></table> </td> <td align=right> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="3" BORDER="0"><br> <font face="arial,helvetica,sans-serif" SIZE="1" COLOR="#999999"> <!-- Start incaddress-eng.nhtml - Version 6.0.1 --> Couvent des Dominicains&nbsp;&nbsp;<br> 8, rue Fabre (BP2040)&nbsp;&nbsp;<br> MONTPELLIER, F  34024&nbsp;&nbsp;<br> <!-- End incaddress-eng.nhtml - Version 6.0.1 --> </font>			 </td> </tr> </table> </td> </tr> <tr> <td colspan=3  bgcolor="#999999" > <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" width="1" HEIGHT="2" BORDER="0"><br> </td> </tr> <tr> <!-- left gutter --> <td width=17> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" width="17" HEIGHT="1" BORDER="0"><br> </td> <td> <img src="/op_montpellier/pages/images/trans_pix.gif" width="456" HEIGHT="1" BORDER="0"><br> <!-- Start incviewfeaturedprods.nhtml - Version 6.0.1 --> <!-- End incviewfeaturedprods.nhtml - Version 6.0.1 --> <!-- body --> <font face="arial,helvetica,sans-serif" color="#000000" size="2"> <br> <!-- Start incbanner.nhtml - Version 6.0.1 --> <!-- End incbanner.nhtml - Version 6.0.1 --> <!-- End vheader.nhtml - Version 6.0.1 --> <!-- Links --> <FORM NAME="nvoForm" METHOD="POST" ACTION="index.nhtml"> <INPUT TYPE=HIDDEN NAME=".News.ArchiveArticle"   VALUE=""> <!-- Start incheadline.nhtml - Version 6.0.1 --> <!-- headline and description --> <dl><dt> <font face="arial,helvetica,sans-serif" size="4" color="#999999"> <B>Cycle " CONNAISSANCE de l'ISLAM "</B> </font> <dd> <font face="arial,helvetica,sans-serif" size="2" color="#000000">  <DIV align=center> <DIV align=center><FONT size=2></FONT>&nbsp;</DIV> <DIV align=center>&nbsp;</DIV> <DIV align=center><FONT size=2>Pour l'ensemble des conf&eacute;rences reportez-vous &agrave; <A href="http://ebiz.netopia.com/op_montpellier/uneeglisedanslacite200212003/" target=_self>Une &eacute;glise dans la cit&eacute;</A></FONT></DIV> <DIV align=center><FONT size=2> <P align=center><STRONG><EM><FONT face="" size=4>Nouveau cycle&nbsp; &laquo; Connaissance de l&rsquo;Islam &raquo;</FONT></EM></STRONG></P> <P align=center><FONT face="times new roman,times,serif">De 20 h.30 &agrave; 22 h.00</FONT></P> <P align=center><FONT face="times new roman,times,serif"><STRONG><EM><FONT size=4>Paroisse de la DEVEZE &agrave; BEZIERS</FONT></EM></STRONG><BR><FONT size=4></FONT></FONT></P> <P align=center><FONT face="times new roman,times,serif"><FONT size=4>Pr&eacute;sentation : <STRONG>fr. &Eacute;ric-Thomas MAC&Eacute;, o.p</STRONG>. </FONT></FONT></P> <P align=center><FONT face="times new roman,times,serif"><FONT size=4></FONT></FONT><FONT face="times new roman,times,serif">(04 67 66 02 00)</FONT></P> <P><FONT face="times new roman,times,serif"><STRONG>2003 </STRONG>15 janvier : Gen&egrave;se de l'Islam</FONT></P> <P><FONT face="times new roman,times,serif">&nbsp;22 janvier : Le Coran</FONT></P> <P><FONT face="times new roman,times,serif">&nbsp;29 janvier : Le proph&eacute;tisme dans l'Islam.</FONT></P> <P align=center><BR>*&nbsp;&nbsp;&nbsp;&nbsp; *&nbsp;&nbsp;&nbsp;&nbsp; *&nbsp;&nbsp;&nbsp;&nbsp; *&nbsp;&nbsp;&nbsp;&nbsp; *<BR></FONT></P></DIV></DIV> </font> </dl> </TD><TD></TD></TR><TR><TD COLSPAN=3 BGCOLOR="#999999"><IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD></TR><TR><TD></TD><TD VALIGN=TOP> <!-- End incheadline.nhtml - Version 6.0.1 --> <!-- News --> <table WIDTH="100%" cellspacing=0 cellpadding=0 border=0> <tr> <td align=center> <br> <font face="arial,helvetica,sans-serif" size="2" color="#000000"> <b>There are no Articles to display.</b> </font> </td> </tr> </table> <br><br> <table width=100% cellpadding=0 border=0 cellspacing=0> <tr> <td align=left width=33%> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="1" BORDER="0"><br> </td> <td align=center width=33%> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="1" BORDER="0"><br> </td> <td align=right width=33%> <font face="arial,helvetica,sans-serif" size="2" color="#000000"> <b><A HREF="/op_montpellier/coran/search.nhtml">Search Articles</A></b> </font> </td> </tr> </table> </FORM> <!-- Start links_outline.nhtml - Version 6.0.1 --> <!-- End links_outline.nhtml - Version 6.0.1 --> <!-- Start vfooter.nhtml - Version 6.0.1 --> <!-- start: vfooter.nhtml --> <br> </font> </td> <!-- right gutter --> <td align="right" WIDTH="10"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="10" HEIGHT="1" BORDER="0"><br> </td> </tr> </table> </td> </tr> <tr> <td bgcolor="#FFFFFF"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="1" BORDER="0"><br></td> <td bgcolor="#999999"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="1" BORDER="0"><br> </td> <td  bgcolor="#999999" > <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="1" BORDER="0"><br> </td> </tr> <tr> <td width=110 bgcolor="#FFFFFF"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="110" HEIGHT="1" BORDER="0"><br> </td> <td width=480 colspan=3> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="479" HEIGHT="2" BORDER="0"><br> </td> </tr> <tr> <td width=110 bgcolor="#FFFFFF"> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="110" HEIGHT="1" BORDER="0"><br> </td> <td colspan=3 align=center> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="10" BORDER="0"><br> <FONT face="arial,helvetica,sans-serif" SIZE="4" COLOR="#999999">  </font> <br> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="5" BORDER="0"><br> <!-- footer nav bar --> <table border=0 cellpadding=0 width=100% cellspacing=0> <tr> <td align=center> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> <A HREF="/op_montpellier/door/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">montpellier.dominicains.com</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/faqaboutus/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Qui sommes-nous?</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/fellowship1/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Membres de la Communaut</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/contactinformation/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Nous contacter</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/noustrouver/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Nous trouver</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/worship/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Eglise</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/uneeglisedanslacite200212003/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Une glise dans la cit 2002-2003</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/chorale/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Chorale</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/orgue/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Orgue</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/chantiersencours/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Chantiers en cours</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/calendar/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Calendrier</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/formations/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Formations</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/outreachservices1/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Centre Lacordaire</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/cesa1centredetudestaugustin/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">C.E.S.A. - Centre d'tude St-Augustin</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/perpignan/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Perpignan</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/sete/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Ste</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/st1jeandevedas/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">St-Jean de Vdas</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/coran/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">ISLAM</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/services/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Services</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/ministries/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Rosaire</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/familledominicaine/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Famille Dominicaine</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/folder/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Documents</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/usefullinks/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Liens</font></A> </font> <font face="arial,helvetica,sans-serif" size="1" COLOR="#999999"> &nbsp;|&nbsp; <A HREF="/op_montpellier/images/"><font face="arial,helvetica,sans-serif"  size="1"  COLOR="#0000FF">Images</font></A> </font> </td> </tr> </table> <br> <IMG SRC="/op_montpellier/pages/images/trans_pix.gif" WIDTH="1" HEIGHT="5" BORDER="0"><br> </td> </tr> </table> <!-- Start incfooter.nhtml - Version 6.0.1 --> <SCRIPT><!-- var altSignin = false; function checkCTRL(evt) { return false } function GetSigninURL(evt) { if (altSignin == false) { var partnerURL = "/pages/common/signin.nhtml"; if (partnerURL.charAt(0) == "/") partnerURL = "/op_montpellier/pages/common/signin.nhtml"; location = partnerURL; } else { location = "http://ebiz.netopia.com/op_montpellier/coran/edit.nhtml"; } } //--></SCRIPT> <br> <table width="100%" cellpadding=0 cellspacing=0 border=0> <tr> <td align=right valign=bottom width=90%> <img src="/op_montpellier/pages/images/trans_pix.gif" width=540 height=1> </td> <td align=center> <span class="normal"><a name="signin" href="javascript:GetSigninURL()"  onMouseOver="return setStatusBar('Sign in to your site.')"  onMouseOut="return setStatusBar('')"><img src="/op_montpellier/pages/images/signin-eng.gif" alt="Sign In" BORDER="0"><br></a> <a href="javascript:GetSigninURL()"  onMouseOver="return setStatusBar('Sign in to your site.')" onMouseOut="return setStatusBar('')">Sign In</a></span> </td> <td align=right valign=bottom> <img src="/op_montpellier/pages/images/trans_pix.gif" width=10 height=1> </td> </tr> </table> <!-- Start incpartnerfooter.nhtml - Version 6.0.1 --> <!-- End incpartnerfooter.nhtml - Version 6.0.1 --> <!-- Start inctracker.nhtml - Version 6.0.1 --> <IMG SRC="http://ebizstore.netopia.com/op_montpellier/track.gif?type=page&url=http://ebiz.netopia.com/op_montpellier/coran&referer=" WIDTH="1" HEIGHT="1" BORDER="0"> <!-- End inctracker.nhtml - Version 6.0.1 --> <!-- End incfooter.nhtml - Version 6.0.1 --> </body> </html> <!-- End vfooter.nhtml - Version 6.0.1 --> <!-- End index.nhtml - Version 6.0.1 --> 
