

for( j=0; j <= 40; j++ )
{document.getElementById('hightlight_dom'+j).style.cursor="pointer";
document.getElementById('hightlight_int'+j).style.cursor="pointer";
}


function  callIn(idName)
{

var id_temp;
var class_temp;
var temp;
var id_array = new Array("address_dom1","address_dom2","address_dom3","address_dom4","address_dom5","address_dom6","address_dom7","address_dom8","address_dom9","address_dom10","address_dom11","address_dom12","address_dom13");
		

 for( i=0; i <= 40; i++ )
 {
    if(id_array[i]== idName)
	{   
	id_temp = id_array[i];
		
		temp = document.getElementById(id_temp);
		
		temp.style.display = "block";
	document.getElementById("hightlight_dom"+i).style.color="#077082";
	document.getElementById("hightlight_dom"+i).style.fontWeight="bold";
	}
	else
	{
	id_temp = id_array[i];
		 
		 temp = document.getElementById(id_temp);      	 
		 temp.style.display = "none";
	document.getElementById("hightlight_dom"+i).style.color="#939392";
	document.getElementById("hightlight_dom"+i).style.fontWeight="normal";	 
	}
  } 
}


function  callIn2(idName)
{


var id_temp;
var class_temp;
var temp;
var id_array = new Array("address_int1","address_int2","address_int3","address_int4","address_int5","address_int6","address_int7","address_int8","address_int9","address_int10","address_int11","address_int12","address_int13","address_int14","address_int15","address_int16","address_int17");
		

 for( i=0; i <= 40; i++ )
 {
    if(id_array[i]== idName)
	{

	id_temp = id_array[i];
		
		temp = document.getElementById(id_temp);
		
		temp.style.display = "block";
	document.getElementById("hightlight_int"+i).style.color="#077082";
	document.getElementById("hightlight_int"+i).style.fontWeight="bold";
}
	else
	{
		 id_temp = id_array[i];
		 
		 temp = document.getElementById(id_temp);      	 
		 temp.style.display = "none";
	document.getElementById("hightlight_int"+i).style.color="#939392";
	document.getElementById("hightlight_int"+i).style.fontWeight="normal";		
	}
  } 
}

