/*  location */

var depth1 = "";
var depth2 = "";
var depth3 = "";
var urlpath = "/global/business/telecomm";

function setDepthVar( firVar, secVar, thrVar ) {
        depth1 = firVar;
        depth2 = secVar;
        depth3 = thrVar;        
}

function locationCheck( depth1, depth2, depth3 ){
       
        var returnPram = "";
        var oneDepthName = new Array();
        var twoDepthName = new Array();
        var threeDepthName = new Array();
        var home = "<a href='"+urlpath+"/'>home</a>";		
		
		// information for service provider
		oneDepthName[1] = "<strong>wireless operator</strong>";
		oneDepthName[2] = "<strong>wireline operator</strong>";
		oneDepthName[3] = "<strong>ISP</strong>";
		oneDepthName[4] = "<strong>cable operator</strong>";
		oneDepthName[5] = "<strong>enterprise</strong>";
		
        // footer
	    oneDepthName[8] = "<strong>privacy</strong>";
        oneDepthName[9] = "<strong>legal</strong>";
		oneDepthName[10] = "<strong>sitemap</strong>";
		oneDepthName[11] = "<strong>contact us</strong>";
        
        returnPram = home+" &gt; "+oneDepthName[depth1];
        

        return returnPram ;
}

// VIEW
function pathindicator(){

        var zoneFront ="";
        var zoneBack ="";
        zoneFront="";
        zoneBack="";
        
        document.write(zoneFront + locationCheck( depth1, depth2, depth3 ) + zoneBack);
}