// JavaScript Document

/* The only difference between this file and MOD3 is P7_TMopen which starts at line 45  */


function P7_TMenu(b,og) { //v2.8 modified by Project Seven Development(PVII)
 if(og==9){return;}
 var i,s,c,k,j,tN,hh;if(document.getElementById){
 if(!og){P7_TMfull(b);}
 if(b.parentNode && b.parentNode.childNodes){tN=b.parentNode.childNodes;}else{return;}
 for(i=0;i<tN.length;i++){if(tN[i].tagName&&tN[i].tagName=="DIV"){s=tN[i].style.display;
 hh=(s=="block")?"none":"block";if(og==1){hh="block";}tN[i].style.display=hh;}}
 c=b.firstChild;if(c.data&&(b.className!="p7minusmark"&&b.className!="p7plusmark")){
 k=c.data;j=k.charAt(0);if(j=='+'){c.data='-'+k.substring(1,k.length);
 }else if(j=='-'){c.data='+'+k.substring(1,k.length);}}if(b.className=='p7plusmark'){
 b.className='p7minusmark';}else if(b.className=='p7minusmark'){b.className='p7plusmark';}}
 //b.className='p7minusmark';}else if(b.className=='p7minusmark'){b.className='p7plusmark';}P7_colH2();} USE THIS LINE ONLY WHEN THE Equal Columns Script is called
}

function P7_TMopenLink(mrk,theLink){ //v1.2a by Project Seven Development(PVII)
var i,x,d,hr,ha,ef,a,ag;if(document.getElementById){
d=document.getElementById('p7TMnav');if(d){
ha=d.getElementsByTagName("A");if(ha&&ha.length){
for(i=0;i<ha.length;i++){
if(ha[i].firstChild&&ha[i].firstChild.data){
if(ha[i].firstChild.data==theLink){
if(mrk==1){ha[i].className="p7currentmark";}
if(ha[i].onclick&&ha[i].onclick.toString().indexOf("P7_TMenu")>-1){
a=ha[i].parentNode;}else{a=ha[i].parentNode.parentNode;}while(a){
if(a.tagName&&a.tagName=="DIV"&&a.firstChild&&a.firstChild.tagName=="A"){
P7_TMenu(a.firstChild,1);}a=a.parentNode;}}}}}}}
}


function P7_setTMenu(){ //v2.5 by Project Seven Development(PVII)
 var i,d='',h='<style type=\"text/css\">';if(document.getElementById){
 var tA=navigator.userAgent.toLowerCase();if(window.opera){
 if(tA.indexOf("opera 5")>-1 || tA.indexOf("opera 6")>-1){return;}}
 for(i=1;i<20;i++){d+='div ';h+="\n#p7TMnav div "+d+"{display:none;}";}
 document.write(h+"\n</style>");}
}
P7_setTMenu();


/* Kerstin inserted this next function from the original code 
in an attempt to have a landing page but NOT open the associated submenu */

function P7_TMopen() {
//v2.5 by Project Seven Development(PVII)
  var i,x,d,hr,ha,ef,a,ag;
  if(document.getElementById) {
    d=document.getElementById('p7TMnav');
    if(d){hr=window.location.href;
      ha=d.getElementsByTagName("A");
      if(ha&&ha.length) {
        for(i=0;i<ha.length;i++){if(ha[i].href) {
          if(hr.indexOf(ha[i].href)>-1) {
            ha[i].className="p7currentmark";
            a=ha[i].parentNode.parentNode;
            while(a) {
              if(a.firstChild && a.firstChild.tagName=="A") {
                if(a.firstChild.onclick) {
                  ag=a.firstChild.onclick.toString();
                    if(ag&&ag.indexOf("P7_TMenu")>-1) {
                      P7_TMenu(a.firstChild,1);
                    }
                  }
                }
                a=a.parentNode;
              }
            }
          }
        }
      }
    }
  }
}
/* End of what Kerstin inserted */




/*function P7_TMopen(){ //v2.8 by Project Seven Development(PVII) (custom to on mark current page, rather than curr and parent)
 var i,x,d,hr,ha,ef,a,ag;if(document.getElementById){d=document.getElementById('p7TMnav');
 if(d){hr=window.location.href;ha=d.getElementsByTagName("A");if(ha&&ha.length){
 for(i=0;i<ha.length;i++){if(ha[i].href){if(hr.indexOf(ha[i].href)>-1){
 //only current mark section if it is the target
 var bb=0;
 if(ha[i].onclick&&ha[i].onclick.toString().indexOf("P7_TMenu")>-1){a=ha[i].parentNode;
 }else{
 	bb++;
 	ha[i].className="p7currentmark";a=ha[i].parentNode.parentNode;}
 while(a){
 	if(a.firstChild&&a.firstChild.tagName&&a.firstChild.tagName=="A"){
	if(a.firstChild.onclick){ag=a.firstChild.onclick.toString();
	if(ag&&ag.indexOf("P7_TMenu")>-1){P7_TMenu(a.firstChild,1);
	if(bb==0){
    a.firstChild.className+=" p7currentmark";
	}
	}}}
	bb++;
	a=a.parentNode;}}}}}}}
}
*/
function P7_TMall(a){ //v2.5 by Project Seven Development(PVII)
 var i,x,ha,s,tN;if(document.getElementById){ha=document.getElementsByTagName("A");
 for(i=0;i<ha.length;i++){if(ha[i].onclick){ag=ha[i].onclick.toString();
 if(ag&&ag.indexOf("P7_TMenu")>-1){if(ha[i].parentNode && ha[i].parentNode.childNodes){
 tN=ha[i].parentNode.childNodes;}else{break;}for(x=0;x<tN.length;x++){
 if(tN[x].tagName=="DIV"){s=tN[x].style.display;if(a==0&&s!='block'){P7_TMenu(ha[i]);
 }else if(a==1&&s=='block'){P7_TMenu(ha[i]);}break;}}}}}}
}

function P7_TMclass(){ //v2.5 by Project Seven Development(PVII)
 var i,x,d,tN,ag;if(document.getElementById){d=document.getElementById('p7TMnav');
 if(d){tN=d.getElementsByTagName("A");if(tN&&tN.length){for(i=0;i<tN.length;i++){
 ag=(tN[i].onclick)?tN[i].onclick.toString():false;if(ag&&ag.indexOf("P7_TMenu")>-1){
 tN[i].className='p7plusmark';}else{tN[i].className='p7defmark';}}}}}
}

function P7_TMfolder(){ //v1.0 by PVII-www.projectseven.com
 //describe the folder name, link text pairs
 var bb=new Array('','');
 var i,x,d,jj,hr,a,ha,m=false;
 if(document.getElementById){d=document.getElementById('p7TMnav');
 hr=window.location.href;if(d){for(x=0;x<bb.length;x+=2){
 jj="/"+bb[x]+"/";if(hr.indexOf(jj)>-1){m=true;break;}}
 if(m){ha=d.getElementsByTagName("A");if(ha&&ha.length){
 for(i=0;i<ha.length;i++){if(ha[i].firstChild&&ha[i].firstChild.data){
 if(ha[i].firstChild.data==bb[x+1]){ if(ha[i].onclick&&ha[i].onclick.toString().indexOf("P7_TMenu")>-1){
 a=ha[i].parentNode;}else{a=ha[i].parentNode.parentNode;
 ha[i].className="p7currentmark";}while(a){
 if(a.tagName&&a.tagName=="DIV"&&a.firstChild.tagName&&a.firstChild.tagName=="A"){
 P7_TMenu(a.firstChild,1);}a=a.parentNode;}}}}}}}}
 }

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function P7_autoShowHide() { //v1.2 by PVII-www.projectseven.com
 var g,b,k,f,ag=arguments,a=parseInt(ag[0]);
 if(!document.p7setc){p7c=new Array();document.p7setc=true;for(var u=0;u<10;u++){
 p7c[u]=new Array();}}for(k=0;k<p7c[a].length;k++){if((g=MM_findObj(p7c[a][k]))!=null){
 b=(document.layers)?g:g.style;b.display="none";}}for(k=1;k<ag.length;k++){
 if((g=MM_findObj(ag[k]))!=null){b=(document.layers)?g:g.style;b.display="block";
 f=false;for(var j=0;j<p7c[a].length;j++){if(ag[k]==p7c[a][j]){f=true;}}
 if(!f){p7c[a][p7c[a].length++]=ag[k];}}}
}

function P7_TMopenUrl(mrk,theUrl){ //v2.5b by Project Seven Development(PVII)
  var i,x,d,hr,ha,ef,a,ag;if(document.getElementById){
  d=document.getElementById('p7TMnav');
  if(d){hr=theUrl;ha=d.getElementsByTagName("A");if(ha&&ha.length){
  for(i=0;i<ha.length;i++){if(ha[i].href){if(ha[i].href.indexOf(hr)>-1){
  if(mrk==1){ha[i].className="p7currentmark";}a=ha[i].parentNode.parentNode;while(a){
  if(a.firstChild && a.firstChild.tagName=="A"){if(a.firstChild.onclick){
  ag=a.firstChild.onclick.toString();if(ag&&ag.indexOf("P7_TMenu")>-1){
  P7_TMenu(a.firstChild,1);}}}a=a.parentNode;}}}}}}}
  }
  
function P7_TMfull(tL){ //v1.4 by Project Seven Development(PVII)
	var i,x,pp,pa,d,ha,s,tN,tA,c,k,j,pd,pc,m;
	var tD=new Array(),tAA=new Array();
	if(tL&&tL.parentNode){pp=tL.parentNode;while(pp){
	if(pp.tagName&&pp.tagName=="DIV"){if(pp.id &&pp.id=="p7TMnav"){
	break;}tD[tD.length]=pp;}pp=pp.parentNode;}}
	d=document.getElementById("p7TMnav");tA=d.getElementsByTagName("A");
	for(i=0;i<tA.length;i++){m=true;if(tA[i].onclick){
	ag=tA[i].onclick.toString();if(ag&&ag.indexOf("P7_TMenu")>-1){
	if(tA[i].parentNode && tA[i].parentNode.childNodes){
	for(x=0;x<tD.length;x++){if(tA[i].parentNode==tD[x]){
	m=false;break;}}if(m){tAA[tAA.length]=tA[i];}}}else{
	if(tA[i].className=="p7currentmark"&&tA[i]!=tL){tA[i].className="";}}}}
	for(i=0;i<tAA.length;i++){if(tAA[i].onclick){
	ag=tAA[i].onclick.toString();if(ag&&ag.indexOf("P7_TMenu")>-1){
	if(tAA[i].parentNode && tAA[i].parentNode.childNodes){
	tN=tAA[i].parentNode.childNodes;for(x=0;x<tN.length;x++){
	if(tN[x].tagName=="DIV"){s=tN[x].style.display;if(s=='block'){
	P7_TMenu(tAA[i],5);}}}}}}}
	}