// JavaScript Document

function smtShowSection(section) {

	var link1 = '<a href="#" onclick="javascript:smtShowSection(1);return false;">... expand</a>';
	var text1 = "revenue-generating IVR services.  Ideal for both inbound and outbound applications, integrating Web 2.0 and Telecom 2.0 features, the OmniVox3D SIP Application Server offers five-9 (99.999%) availability, carrier-class scalability, and open architecture flexibility required for over 250 Network Operators and Value Added Service Providers across 95 countries.  OmniVox3D is the core component of the APEX Service Delivery Platform.";

	var link2 = '<a href="#" onclick="javascript:smtShowSection(2);return false;">... expand</a>';
	var text2 = "of new and compelling revenue-generating enhanced Voice, Video and Data services, from Network IVR and Customer Care to Web Mashups.  With the OmniVox3D Application Server and its integrated OmniView Service Creation Environment and OAM&amp;P Console at its core, the APEX SDP delivers significant savings by eliminating silos of proprietary technology and reducing the need for specialized skills in service development.";
	
	var link3 = '<a href="#" onclick="javascript:smtShowSection(3);return false;">... expand</a>';
	var text3 = "Creation Environment, Network Operators and Value Added Service Providers can quickly design, develop and monetize new, compelling, revenue-generating services, while the OAM&amp;P Console allows for maintaining and provisioning services and network components, configuring system-wide parameters, and controlling locally and remotely distributed components, all from a single, centralized location.";
	
	var link4 = '<a href="#" onclick="javascript:smtShowSection(4);return false;">... expand</a>';
	var text4 = "IVR (Interactive Voice Response), Video IVR or IVVR (Interactive Voice &amp; Video Response), Outbound IVR, Unified &amp; Short Messaging, Real-Time Billing (Prepaid), Color Ringback Tones, Conference Calling, Automated Collect Calling, Click-to-Talk and Fax-to-Email.  Additionally, certain Service Ready IVR Solutions can be combined, for example, to offer services such as Prepaid Voice Mail, or Prepaid Conferencing.";
	
	var link5 = '<a href="#" onclick="javascript:smtShowSection(5);return false;">... expand</a>';
	var text5 = "reducing the number of lines needed for the applications; or as a front-end for existing applications, where the APEX SDP acts as a central system routing calls to the individually dedicated applications, allowing applications to stay where they are, even if they are remotely based, providing a single user interface for subscribers while migrating applications over time.";
	
	if(section == '1') {
		document.getElementById('section1').innerHTML = text1;
		document.getElementById('section2').innerHTML = link2;
		document.getElementById('section3').innerHTML = link3;
		document.getElementById('section4').innerHTML = link4;
		document.getElementById('section5').innerHTML = link5;
	}
	else if(section == '2') {
		document.getElementById('section1').innerHTML = link1;
		document.getElementById('section2').innerHTML = text2;
		document.getElementById('section3').innerHTML = link3;
		document.getElementById('section4').innerHTML = link4;
		document.getElementById('section5').innerHTML = link5;
	}
	else if(section == '3') {
		document.getElementById('section1').innerHTML = link1;
		document.getElementById('section2').innerHTML = link2;
		document.getElementById('section3').innerHTML = text3;
		document.getElementById('section4').innerHTML = link4;
		document.getElementById('section5').innerHTML = link5;
	}
	else if(section == '4') {
		document.getElementById('section1').innerHTML = link1;
		document.getElementById('section2').innerHTML = link2;
		document.getElementById('section3').innerHTML = link3;
		document.getElementById('section4').innerHTML = text4;
		document.getElementById('section5').innerHTML = link5;
	}
	else if(section == '5') {
		document.getElementById('section1').innerHTML = link1;
		document.getElementById('section2').innerHTML = link2;
		document.getElementById('section3').innerHTML = link3;
		document.getElementById('section4').innerHTML = link4;
		document.getElementById('section5').innerHTML = text5;
	}
	
}
