
function ExpandSection(idVariable, ImgName){

if (idVariable.style.display=="none")
	{
		idVariable.style.display="" ;
		if (ImgName.src != "") {ImgName.src = "dwnex.gif" ;}
	}
else{
	idVariable.style.display="none" ;
	if (ImgName.src != "") {ImgName.src = "rtex.gif" ;}
     }



}

function ContractSection(idVariable, ImgName){


if (idVariable.style.display==""){idVariable.style.display="none"}

  if (ImgName.src != "") {ImgName.src = "rtex.gif" ;}
}


function GetLanguagePage(form) {
var cIndex = form.LangSelect.selectedIndex
	       	if(cIndex != -1){
	       		location = form.LangSelect.options[cIndex].value
	       	}
}

var cm=null;
document.onclick = new Function("show(null)")

function getPos(el,sProp) {
 var iPos = 0;
 while (el!=null) {
  iPos+=el["offset" + sProp];
  el = el.offsetParent;
 }
 return iPos;
}

function show(el,m) {
 if (m) {
  // ensure that there are submenu items
  if(m.innerText.length > 2) {
     m.style.display='';
  }
  else {
     m.style.display='none';
  }   
  m.style.pixelLeft = getPos(el,"Left");
  m.style.pixelTop = getPos(el,"Top") + el.offsetHeight;
  if(m.style.pixelWidth < 75) {
     m.style.pixelWidth = 75;
  }
   
 }
 if ((m!=cm) && (cm)) cm.style.display='none'
 cm=m
}
