﻿// JScript File
var menu2=new Array()
menu2[0]='<NOBR><a href="about.shtml">&nbsp;About Canadian Academy of Homeopathy</a></NOBR>'
menu2[1]='<NOBR><a href="andresaine.shtml">&nbsp;About Dr. André Saine</a></NOBR>'

var menu3=new Array()
menu3[0]='<NOBR><a href="livecourses_det03.shtml">&nbsp;<font color="#990000;"></font>Hahnemannian Prescribing: 10 weekends</a></NOBR>'
menu3[1]='<NOBR><a href="livecourses_det01.shtml">&nbsp;<font color="#990000;"><b>I:</b></font>&nbsp;Essentials of Acute and Chronic Prescribing</a></NOBR>'
menu3[2]='<NOBR><a href="livecourses_det02.shtml">&nbsp;<font color="#990000;"><b>II:</b></font>&nbsp;Illustrated Comparative Materia Medica Pura </a></NOBR>'
menu3[3]='<NOBR><a href="livecourses_det04.shtml">&nbsp;International Hahnemannian Study Group (web)</a></NOBR>'

var menu4=new Array()
menu4[0]='<NOBR><a href="courses_det01.shtml">&nbsp;Advanced Chronic Prescribing</a></NOBR>'
menu4[1]='<NOBR><a href="courses_det02.shtml">&nbsp;Advanced Chronic Prescribing: Indiviual Topics</a></NOBR>'
menu4[2]='<NOBR><a href="courses_det03.shtml">&nbsp;Cancer and Homeopathy</a></NOBR>'
menu4[3]='<NOBR><a href="courses_det04.shtml">&nbsp;Resolving Difficult Cases</a></NOBR>'
menu4[4]='<NOBR><a href="courses_det05.shtml">&nbsp;Homeopathy and Auto-immune Diseases</a></NOBR>'
menu4[5]='<NOBR><a href="courses_det06.shtml">&nbsp;Homeopathy and Atopic Diseases </a></NOBR>'
menu4[6]='<NOBR><a href="courses_det07.shtml">&nbsp;Illustrated Comparative Materia Medica Pura Part I</a></NOBR>'
menu4[7]='<NOBR><a href="courses_det08.shtml">&nbsp;Illustrated Comparative Materia Medica Pura Part II</a></NOBR>'
menu4[8]='<NOBR><a href="courses_det10.shtml">&nbsp;Illustrated Comparative Materia Medica Pura Part III</a></NOBR>'
menu4[9]='<NOBR><a href="courses_det11.shtml">&nbsp;<font color="#990000;"><b>NEW</b></font>&nbsp;Illustrated Comparative Materia Medica Pura Part IV</a></NOBR>'
menu4[10]='<NOBR><a href="courses_det09.shtml">&nbsp;Resolving Cases with Less-Commonly Prescribed Remedies</a></NOBR>'

var menu5=new Array()
menu5[0]='<NOBR><a href="publications_det01.shtml">&nbsp;Lessons in Pure Homeopathy</a></NOBR>'
menu5[1]='<NOBR><a href="publications_det02.shtml">&nbsp;The Weight of Evidence</a></NOBR>'
        
var menu6=new Array()
menu6[0]='<NOBR><a href="articles.shtml">&nbsp;List of All Articles</a></NOBR>'
menu6[1]='<NOBR><a href="articles_det22.shtml">&nbsp;<font class="stit red">NEW</font>&nbsp;Keys to Become a Successful Physician</a></NOBR>'
menu6[2]='<NOBR><a href="articles_det21.shtml">&nbsp;<font class="stit red">NEW</font>&nbsp;Pure Homeopathy Defined An Address</a></NOBR>'


var menu7=new Array()
menu7[0]='<NOBR><a href="links.shtml">&nbsp;Resources & Links</a></NOBR>'
menu7[1]='<NOBR><a href="repertory.shtml">&nbsp;Repertory Additions</a></NOBR>'

       
var menuwidth='450px' //default menu width
var menubgcolor='#ffffff'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu
