// JavaScript Document
function tit_visible(obj_str) {
	tit_ary = ["software","main","cruise","aboutCMT","CMTdownloads","Products","Price","Technical",
			   "SA_III","CogoCADPro","FieldCEGIS","CMTBaseMaps","TrainingCD","CESurvey","PCGISPro",
			   "PCGPS05","PCMAPPER05","CMTSurvey","AirborneInspection","TimberCruiseEx","TimberPC",
			   "ForestToolkit","PDApackage","TimberCE","MARCHIIE"];
	var ary_length  = tit_ary.length;
	
	if (parent.topTit1 != null) {
		
		for (i=0; i< ary_length; i++) { 
			// alert(tit_ary[i]);
			obj1 = parent.topTit1.document.getElementById(tit_ary[i]);
			if (obj1 != null)
				
				obj1.style.visibility="hidden";
		}
		obj1 = parent.topTit1.document.getElementById(obj_str);
		if (obj1 != null)
			// alert(obj_str);
			obj1.style.visibility="visible";
	}
}

function manual_visible(obj_str) {
	tit_ary = ["main","Price"];
	var ary_length  = tit_ary.length;
	for (i=0; i< ary_length; i++) { 
		// alert(tit_ary[i]);
		obj1 = parent.navbar.document.getElementById(tit_ary[i]);
		if (obj1 != null)
			
			obj1.style.visibility="hidden";
	}
	obj1 = parent.navbar.document.getElementById(obj_str);
	if (obj1 != null)
		// alert(obj_str);
		obj1.style.visibility="visible";
}
