//Created by R. Theriault - July 27 200( //
//Fetches links from UG_list_EN.html file and loads them into the main Edocs page (Default.htm) //
//Shows fetched links on main Edocs page (Default.htm) //

//Fetch Links //

$(document).ready(function() { 
 $('#content_MCD4_1').load('/UG/EN/En_list_UG.html #Sets_MCD4'); 
 $('#content_MCD4_2').load('/UG/EN/En_list_UG.html #ACD_MCD4');  
 $('#content_MCD4_3').load('/UG/EN/En_list_UG.html #Other_MCD4'); 
 $('#content_MCD4_4').load('/UG/EN/En_list_UG.html #VM_MCD4'); 
 $('#content_3300_9-0').load('/UG/EN/En_list_UG.html #Sets_3300_9-0'); 
 $('#content_3300_9-0_UR1').load('/UG/EN/En_list_UG.html #Sets_3300_9-0_UR1');
 $('#content_5000_InterTel').load('/UG/EN/En_list_UG.html #Sets_5000_InterTel');
 $('#content_3000_InterTel').load('/UG/EN/En_list_UG.html #Sets_3000_InterTel');
 $('#content_NPUM_3-0').load('/UG/EN/En_list_UG.html #NPUM_3-0');
 $('#content_SpeechServer_5-0').load('/UG/EN/En_list_UG.html #SpeechServer_5-0');
 $('#content_SpeechServer_4-6').load('/UG/EN/En_list_UG.html #SpeechServer_4-6');
 $('#content_SpeechServer_4-5').load('/UG/EN/En_list_UG.html #SpeechServer_4-5'); 
 $('#content_UCA_2-x').load('/UG/EN/EN_list_UG.html #UCA_2-x');
 $('#content_MTS').load('/UG/EN/EN_list_UG.html #MTS');
 $('#content_MCD4_5').load('/UG/EN/En_list_UG.html #Sets_MCD4-0SP1'); 
 $('#content_MCD4_6').load('/UG/EN/En_list_UG.html #5540_MCD4-0SP1'); 
 $('#content_NPUM_4-0').load('/UG/EN/En_list_UG.html #NPUM_4-0');
 $('#content_IPDECT_R4').load('/UG/EN/En_list_UG.html #IP-DECT_Wireless_R4');
 
 {
 }; 
 });
 
// Show Links // 
	
function	displaySpecifiedUserSection(anId)
{
	var specifiedEle = document.getElementById(anId);
	if(specifiedEle !=null)
	{
		specifiedEle.style.display="block";
	}
}		