<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function KTE_S_DoFSCommand(command, args) {
  var KTE_SObj = InternetExplorer ? KTE_S : document.KTE_S;
  	if (command == "js_Goto") 
	{
		//alert(args);
		if (args == "tec_gi")
		{
			location = "kte_oil_field_information.jsp"			
		}
		if (args == "tec_po")
		{
			location = "kte_pro_on.jsp"
		}
		if (args == "tec_io")
		{
			 location = "kte_inf_of.jsp"
		}
		if (args == "tec_tc")
		{
			 location = "kte_the_con.jsp"
		}
		if (args == "tec_tr")
		{
			 location = "kte_tec_rep.jsp"
		}
		if (args == "tec_tcsc2")
		{
			 location = "kte_tec_rep_sec2.jsp"
		}
		if (args == "tec_tcsec3")
		{
			 location = "kte_tec_rep_sec3.jsp"
		}
		
		if (args == "recentnews")
		{
			 location = "kte_recentnews.jsp"
		}
		
		if (args == "management_technical_team")
		{
			 location = "kte_management_tech_team.jsp"
		}
	}
}
// Hook for Internet Explorer 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub KTE_S_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call KTE_S_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
//-->