﻿// JScript File

function CloseAllSubTrs(UrlPath)
{
var xmlhttp  ;

var DataToSendOne = "MenuCode=EterikesAnakinoseisPage"  ;


if(window.ActiveXObject)
{
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
            xmlhttp = new XMLHttpRequest();
}
	
	xmlhttp.open("POST",UrlPath + "CloseAllSubTrs.aspx?Pagename=MainLeftCompany1",false);
	xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	xmlhttp.send(DataToSendOne);
	
	AllObject=xmlhttp.responseText;
	
	var col_array=AllObject.split(",");
        var part_num=0;

        while (part_num < col_array.length)
             {
              if (col_array[part_num]=='')
                 {
                 }
              else
                 {
                 IdTRs=document.getElementById(col_array[part_num]);
             
                 div = IdTRs;
                
                 div.style.display='none';
                 
              
                 }                 

      
                 part_num+=1;
              }
	
}

function OpenSubTrs(MenuId,SelectedLinkID,SelectedTrID,UrlPath,level)
{
//document.getElementById(SelectedTrID).innerHTML=ClientId;


CloseAllSubTrs(UrlPath);

var xmlhttp  ;
var DataToSendOne = "MenuCategID=" + MenuId ;

if(window.ActiveXObject)
{
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
            xmlhttp = new XMLHttpRequest();
}
	
	xmlhttp.open("POST",UrlPath + "OpenSubTrs.aspx?Pagename=MainLeftCompany1",false);
	xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	xmlhttp.send(DataToSendOne);
	
	AllObject=xmlhttp.responseText;
	
	var col_array=AllObject.split(",");
        var part_num=0;

        while (part_num < col_array.length)
             {
              if (col_array[part_num]=='')
                 {
                 }
              else
                 {
                 IdTRs=document.getElementById(col_array[part_num]);
             
                 div = IdTRs;
                 div.style.display='';
                 
              
                 }                 

      
                 part_num+=1;
              }
              
              
	ControlTheStyles('0',MenuId,SelectedLinkID,SelectedTrID,UrlPath,level);
}

function ControlTheStyles(ParentMenuID,MenuId,SelectedLinkID,SelectedTrID,UrlPath,level)
{
//alert(MenuId + '-' + SelectedLinkID + '-' + SelectedTrID + '-' + UrlPath + level);
var xmlhttp  ;

var DataToSendOne = "MenuCode=EterikesAnakinoseisPage"  ;
var DataToSendSec = "&Level=1"  ;
if(window.ActiveXObject)
{
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
            xmlhttp = new XMLHttpRequest();
}
	
	xmlhttp.open("POST",UrlPath + "GetAllTrs.aspx",false);
	xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	xmlhttp.send(DataToSendOne + DataToSendSec);
	 
	AllObject=xmlhttp.responseText;
	
	var col_array=AllObject.split(",");
        var part_num=0;

        while (part_num < col_array.length)
             {
              if (col_array[part_num]=='')
                 {
                 }
              else
                 {
                 IdTRs=document.getElementById('MainLeftCompany1_MenuLeft_'+col_array[part_num]);
             
                 div = IdTRs;
                 
                 IdTRs_=document.getElementById('MainLeftCompany1_MenuLeft2_'+col_array[part_num]);
             
                 div_ = IdTRs_;
                
                 
                 
                 div_.style.color='#010066';
                 div_.style.fontWeight='';
                 div.style.fontWeight='';
                 
                 
                 
                 div.onmouseover = new Function("document.getElementById('MainLeftCompany1_MenuLeft2_"+col_array[part_num]+"').style.background='#e3e3ed';this.style.background='#e3e3ed';this.style.fontWeight='bold'");
                 div.onmouseout = new Function("document.getElementById('MainLeftCompany1_MenuLeft2_"+col_array[part_num]+"').style.background='white';this.style.background='white';this.style.fontWeight=''");
              
                 }                 

      
                 part_num+=1;
              }
	
         if (level=='1')     
         {
document.getElementById('MainLeftCompany1_'+SelectedLinkID).style.color='#990100';
document.getElementById('MainLeftCompany1_'+SelectedLinkID).style.fontWeight='bold';
document.getElementById('MainLeftCompany1_'+SelectedLinkID).style.background='white';
document.getElementById('MainLeftCompany1_'+SelectedLinkID).onmouseover = new Function("return null");
document.getElementById('MainLeftCompany1_'+SelectedLinkID).onmouseout = new Function("return null");

document.getElementById('MainLeftCompany1_'+SelectedTrID).style.background='white';
document.getElementById('MainLeftCompany1_'+SelectedTrID).onmouseover = new Function("return null");
document.getElementById('MainLeftCompany1_'+SelectedTrID).onmouseout = new Function("return null");
//alert(document.getElementById('MainLeftCompany1_'+SelectedLinkID).onmouseover);
}


}


