function getLocation(objRef,treeId) {
	
	if(objRef.options[objRef.selectedIndex].value > 0) {
	
		document.location.href = '/' + treeId + '.' + objRef.options[objRef.selectedIndex].value + '/' + objRef.options[objRef.selectedIndex].text;

	}
}

function getLocationTab(objRef,treeId) {
	
	if(objRef.options[objRef.selectedIndex].value > 0) {
	
		// check for .
		var tmpArr = objRef.options[objRef.selectedIndex].value.split(".");
		
		if(tmpArr.length == 2) {
			document.location.href = '/' + treeId + '.' + objRef.options[objRef.selectedIndex].value + '.1/' + objRef.options[objRef.selectedIndex].text;
		} else {
			document.location.href = '/' + treeId + '.' + objRef.options[objRef.selectedIndex].value + '0.1/' + objRef.options[objRef.selectedIndex].text;
		}
		
		
	}
}