<!--
function closeSideMenu(divLayerName) {
	var theLayer = document.getElementById(divLayerName);
	theLayer.style.visibility='hidden';
	theLayer.style.display='none';
}

function openSideMenu(divLayerName) {
	var theLayer = document.getElementById(divLayerName);
	theLayer.style.visibility='visible';
	theLayer.style.display='block';
}

function toggleSideMenu(divLayerName,imgName,closeOnOpen){
	
	if(closeOnOpen=='yes'){ //HIDE NAV BEFORE OPENING NEW ONE
		for (i=0;i<16;i++){
			if (document.getElementById('sn_sub' + i)){
				document.getElementById('sn_sub' + i).style.visibility='hidden';
				document.getElementById('sn_sub' + i).style.display='none';
				document.getElementById('sn_0'+ i +'_plus').src='img/en/global/plus.gif';
			}
		}
	}
	
	var theLayer = document.getElementById(divLayerName);
	var theImage = document.getElementById(imgName);

	var test = theImage.src.indexOf('minus.gif');
		if (test>0){
			closeSideMenu(divLayerName);
			theImage.src='img/en/global/plus.gif';
		}else{
			openSideMenu(divLayerName);
			theImage.src='img/en/global/minus.gif';
		}
}


function openProperNav(){
	var uri = window.location.toString();
	
	if(uri.indexOf('about.jsp')>0){

		if (uri.indexOf('cor')>0){
				toggleSideMenu('sn_sub_1','sn_01_plus','yes');
		}else if (uri.indexOf('cof')>0){
				toggleSideMenu('sn_sub_3','sn_03_plus','yes');
		}else if (uri.indexOf('par')>0){
				toggleSideMenu('sn_sub_4','sn_04_plus','yes');
		}else if (uri.indexOf('car')>0){
				toggleSideMenu('sn_055','sn_05_plus','yes');		
		}
	
	}
}






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 switchClass(target, newClass) {
  var obj = MM_findObj(target);
  
  if (obj != null) {
    if (obj.className) {
      obj.className = newClass;
    }
  }
}
//-->