<!--
function stoperror(){
return true
}
window.onerror=stoperror
//-->

<!--
//Disable right mouse click script

var message="Function Disabled!";
//
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties
oCMenu.pxBetween=5

//Using the cm_page object to place the menu ----
  //There are some differences between the browsers that I try to fix here.
  
//Angabe wo das Navigationsmenü plaziert werden soll!
oCMenu.fromLeft=!bw.ns4?cmpage.x2=13:cmpage.x2 = 21
//We also need to "replace" the menu on resize. So:
oCMenu.onresize="oCMenu.fromLeft=cmpage.x2 =16"

oCMenu.fromTop=277
oCMenu.rows=0
oCMenu.menuPlacement=0

oCMenu.resizeCheck=1
oCMenu.wait=1000
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="menu"
oCMenu.barHeight="menu"
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=132
oCMenu.level[0].height=27
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="right"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout)
*************************************/

oCMenu.makeMenu('top0','','Page d’accueil','../../../index-french.htm');	
oCMenu.makeMenu('top1','','Au sujet du CCM','../../../au-sujet-du-CCM/au-sujet-du-CCM.php')
oCMenu.makeMenu('top2','','Les activités <br>du CCM','../../../activites/activites.php','',132,42)
oCMenu.makeMenu('top3','','Adoptions Spirituelles','../../../adoptions/adoptions.php','',132)
oCMenu.makeMenu('top4','','Les contacts MC','../../../contacts/mc-active-sisters.php')
oCMenu.makeMenu('top5','','Prières','../../../priere/love-to-pray.php')
oCMenu.makeMenu('top6','','Méditations','../../../meditations/reflection-mt-teresa.php')
oCMenu.makeMenu('top7','','Documents','../../../documents/letter-sr.nirmala.php')
oCMenu.makeMenu('top8','','Le Livret de 1982','../../../livret-1982/livret-1982.php')
oCMenu.makeMenu('top9','','Le Livret de 1997','../../../livret-1997/livret-1997.php')
oCMenu.makeMenu('top10','','Photos','../../../photos/photos.php')

oCMenu.makeMenu('top14','','Questions fréquentes','../../../faq/faq.php','',132)
oCMenu.makeMenu('top15','','Liens','../../../links/links.php')
	
//Leave this line - it constructs the menu
oCMenu.construct()		


