// BEGIN function for COMPANY +++++++++++++++++++++++++++++++++++++++++++++++++++++



var subs_array = new Array("sub1","sub2","sub3","sub4","sub44","sub5","sub55","sub555","sub6","sub7","sub8","sub9","sub10","sub99","sub11","sub13","sub14","sub16","sub17","sub38","sub18","sub19","sub20","sub21","sub22","sub23","sub24","sub25","sub26","sub223","sub255","sub28","sub29","sub30","sub31","sub32","sub33","sub34","sub35","sub36","sub37","sub2412","sub38","sub40","sub41","sub42");// Put the id's of your hidden divs in this array
function displaySubs(the_sub){
	if (document.getElementById(the_sub).style.display==""){
	document.getElementById(the_sub).style.display = "none";return
  }
  for (i=0;i<subs_array.length;i++){
	var my_sub = document.getElementById(subs_array[i]);
	if(my_sub!=null)// added By Balvinder on 07 feb 2010
		my_sub.style.display = "none";
	}
  document.getElementById(the_sub).style.display = "";
  }

// END function for COMPANY +++++++++++++++++++++++++++++++++++++++++++++++++++++


