// JavaScript Document
 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS6 = (bName == "Netscape" && bVer >= 5);
 var NS4 = (bName == "Netscape" && bVer >= 4 && bVer < 5);
 var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
 window.onerror = null;
 var menuActive = 0
 var menuOn = 0
 var onLayer
 var timeOn = null // LAYER SWITCHING CODE

 //RaTN declare var name is strYearMonth
 var strYearMonth = "2546";

 if (NS4 || IE4 || NS6) {
	 if (navigator.appName == "Netscape" && !document.getElementById){
	 layerStyleRef="layer.";
	 layerRef="document.layers";
	 styleSwitch="";
	 layerVis="show";
	 layerHid="hide";
	 }
	 else if (!document.all && document.getElementById) {
	 layerStyleRef="layer.style.";
	 layerRef="document.getElementById";
	 styleSwitch=".style";
	 layerVis="visible";
	 layerHid="hidden";
	 }
	 else {
	 layerStyleRef="layer.style.";
	 layerRef="document.all";
	 styleSwitch=".style";
	 layerVis="visible";
	 layerHid="hidden";
	 }
 }
// HIDE MENU
function hideLayer(layerName){
 if (menuActive == 0) {
 if (NS4 || IE4) {
 eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="'+layerHid+'"');
 }
 if (NS6) {
 eval(layerRef+'("'+layerName+'")'+styleSwitch+'.visibility="'+layerHid+'"');
 }
 }
}// TIMER FOR BUTTON MOUSE OUT
function btnTimer() {
 timeOn = setTimeout("btnOut()",1000)
}// BUTTON MOUSE OUT
function btnOut(layerName) {
 if (menuActive == 0) {
 hideLayer(onLayer)
 }
}// MENU MOUSE OVER 
function menuOver(itemName) {
 clearTimeout(timeOn)
 menuActive = 1
}// MENU MOUSE OUT 
function menuOut(itemName) {
 menuActive = 0 
 timeOn = setTimeout("hideLayer(onLayer)", 400)

 }// SET BACKGROUND COLOR 
function setBgColor(layer, color) {
  if (NS6){
    eval('document.getElementById("'+layer+'").style.backgroundColor="'+color+'"');
  }
  else if (NS4){
    eval('window.document.layers["'+layer+'"].document.bgColor="'+color+'"');
	eval('window.document.layers["'+layer+'"].saveColor="'+color+'"');
  }
  else if (IE4){
    eval('document.all.'+layer+'.style.backgroundColor="'+color+'"');
  }
}

function getImage(name) {
  if (NS4 || NS6) {
    return findImage(name, document);
  }
  if (IE4 || NS6)
    return eval('document.all.' + name);
  return null;
}

function findImage(name, doc) {
  var i, img;
  for (i = 0; i < doc.images.length; i++)
    if (doc.images[i].name == name)
      return doc.images[i];
  for (i = 0; i < doc.layers.length; i++)
    if ((img = findImage(name, doc.layers[i].document)) != null) {
      img.container = doc.layers[i];
      return img;
    }
  return null;
}

function getImagePageLeft(img) {
  var x, obj;
  if (NS4 || NS6) {
    if (img.container != null)
      return img.container.pageX + img.x - 1;
    else
      return img.x - 1;
  }
  if (IE4) {
    x = 0;
    obj = img;
    while (obj.offsetParent != null) {
      x += obj.offsetLeft;
      obj = obj.offsetParent;
    }
    x += obj.offsetLeft;
    return x;
  }
  return -1;
}

function getImagePageTop(img) {
  var y, obj;
  if (NS4 || NS6) {
    if (img.container != null)
      return img.container.pageY + img.y;
    else
      return img.y;
  }
  if (IE4) {
    y = 0;
    obj = img;
    while (obj.offsetParent != null) {
      y += obj.offsetTop;
      obj = obj.offsetParent;
    }
    y += obj.offsetTop;
    return y;
  }
  return -1;
}
// -->

function setVisible(layerName, isVisible)
{
	document.all[layerName].style.posLeft = document.all.frTable.offsetLeft + 133;
	document.all[layerName].style.visibility = isVisible;
}
<!--
function loadPage(URL) {
    if (URL != "" ) {
        if (URL == "divide" ) {reset();} else { document.location.href = URL;}
    }
    return false;
}

function shLayer(layerName){
 img = getImage("imgTabs");
 x = getImagePageLeft(img);
 y = getImagePageTop(img);
 menuTop = y + 20 ; // LAYER TOP POSITION
 Drop1tL = x + 1 ; // 'Drop1' LAYER LEFT POSITION
 Drop2tL = x + 76 ;  // 'Drop2' LAYER LEFT POSITION
 Drop3tL = x + 145 ;  // 'Drop3' LAYER LEFT POSITION
 Drop4tL = x + 188;  // 'Drop4' LAYER LEFT POSITION
 Drop5tL = x + 247;  // 'Drop5' LAYER LEFT POSITION
 Drop6tL = x + 315;  // 'Drop6' LAYER LEFT POSITION
 Drop1eL = x + 3 ; // 'Drop1' LAYER LEFT POSITION
 Drop2eL = x + 79 ;  // 'Drop2' LAYER LEFT POSITION
 Drop3eL = x + 127 ;  // 'Drop3' LAYER LEFT POSITION
 Drop4eL = x + 196;  // 'Drop4' LAYER LEFT POSITION
 Drop5eL = x + 261;  // 'Drop5' LAYER LEFT POSITION
 Drop6eL = x + 336;  // 'Drop6' LAYER LEFT POSITION

if (NS4 || IE4 || NS6) {
 if (timeOn != null) {
 clearTimeout(timeOn)
 hideLayer(onLayer)
 }
 if (NS4 || IE4) {
 eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="'+layerVis+'"');
 eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.top="'+menuTop+'"');
 eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.left="'+eval(layerName+'L')+'"');
 } 
 if (NS6) {
 eval(layerRef+'("'+layerName+'")'+styleSwitch+'.visibility="'+layerVis+'"');
 eval(layerRef+'("'+layerName+'")'+styleSwitch+'.top="'+menuTop+'"');
 eval(layerRef+'("'+layerName+'")'+styleSwitch+'.left="'+eval(layerName+'L')+'"');
 } 
 onLayer = layerName
 }
}

function gotoPage(URL) {
    if (URL != "" ) {
        if (URL == "divide" ) {reset();} else { document.location.href = URL;}
    }
    return false;
}

function menuRollOverImage(itemName,rowID,colorCode)
{
	menuOver(itemName);
	setBgColor(rowID,colorCode);	
}

function menuRollOutImage(itemName,rowID,colorCode)
{
	menuOut(itemName);
	setBgColor(rowID,colorCode);
}

/**/
function top_menu_eng(thai,english){

	document.write('<table width="570" border="0" cellspacing="0" cellpadding="0">');
  	document.write('	<tr>');
    document.write('		<td align="left" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="85">');
    document.write('    		<param name="movie" value="/swf/top_menu_en.swf">');
    document.write('    		<param name="quality" value="high">');
    document.write('    		<embed src="/swf/top_menu_en.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="85"></embed></object>');
    document.write('    		<a href="/switch.jsp?lang=th"><img src="/img/top_menupic_en.gif" width="70" height="85" border="0" ></a>');
    document.write('    		</td>');
  	document.write('	</tr>');
	document.write('</table>');
}
/**/

/* old code 25 / 08 /46 P' lux */
function top_menu_thai(thai,english){
	
	document.write('<table width="570" border="0" cellspacing="0" cellpadding="0">');
  	document.write('	<tr>');
    document.write('		<td align="left" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="85">');
    document.write('    		<param name="movie" value="/swf/top_menu_th.swf">');
    document.write('    		<param name="quality" value="high">');
    document.write('    		<embed src="/swf/top_menu_th.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="85"></embed></object>');
    document.write('    		<a href="/switch.jsp?lang=en"><img src="/img/top_menupic_th.gif" width="70" height="85" border="0" ></a>');
    document.write('    		</td>');
  	document.write('	</tr>');
	document.write('</table>');

}
/**/

/* ratn design for event thai  31 / 05 /47 */
function top_menu_event_thai(thai,english){
	
	document.write('<table width="570" border="0" cellspacing="0" cellpadding="0">');
  	document.write('	<tr>');
    document.write('		<td align="left" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="85">');
    document.write('    		<param name="movie" value="/swf/top_menu_th.swf">');
    document.write('    		<param name="quality" value="high">');
    document.write('    		<embed src="/swf/top_menu_th.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="85"></embed></object>');
    document.write('    		<a href="/event/hutch_event_en.jsp"><img src="/img/top_menupic_th.gif" width="70" height="85" border="0" ></a>');
    document.write('    		</td>');
  	document.write('	</tr>');
	document.write('</table>');

}

/* ratn design for event eng  31 / 05 /47 */
function top_menu_event_eng(thai,english){
	
	document.write('<table width="570" border="0" cellspacing="0" cellpadding="0">');
  	document.write('	<tr>');
    document.write('		<td align="left" valign="top"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="500" height="85">');
    document.write('    		<param name="movie" value="/swf/top_menu_en.swf">');
    document.write('    		<param name="quality" value="high">');
    document.write('    		<embed src="/swf/top_menu_en.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="85"></embed></object>');
    document.write('    		<a href="/event/hutch_event_th.jsp"><img src="/img/top_menupic_en.gif" width="70" height="85" border="0" ></a>');
    document.write('    		</td>');
  	document.write('	</tr>');
	document.write('</table>');

}

function top_menu_film_thai(thai,english){
// New Version
	document.write(' <style>');
	document.write(' #Drop1t {POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1}');
	document.write(' #Drop2t {POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1}');
	document.write(' #Drop3t {POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1}');
	document.write(' #Drop4t {POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1}');
	document.write(' #Drop5t {POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1}');
	document.write(' #Drop6t {POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1}');
	document.write(' .menu {COLOR: #434F5E; FONT-FAMILY: arial, helvetica, "sans serif"; FONT-SIZE: 7pt; TEXT-DECORATION: none}');
	document.write(' .menu:hover {COLOR: #434F5E; FONT-FAMILY: arial, helvetica, "sans serif"; FONT-SIZE: 7pt; TEXT-DECORATION: none}');
	document.write(' </style>');

	document.write(' <div id="Drop1t" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden">');
	document.write(' 	<table border="0" cellspacing="0" cellpadding="0">');
	document.write(' 		<tr>');
	document.write(' 			<td bgcolor="#FFFFFF">');
	document.write(' 				<table border=0 cellpadding=0 cellspacing=0>');
	document.write(' 					<tr id="d11t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="#" onClick="javascript:window.open(\'/index.jsp\')" onMouseOut=menuRollOutImage("rollimg2","d11t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d11t","#EEEDF0") target=_top>แบรนด์ Hutch</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 				</table>');
	document.write(' 			</td>');
	document.write(' 		</tr>');
	document.write(' 	</table>');
	document.write(' </div>');

	document.write(' <div id="Drop2t" style="position:absolute; width: 150px; height: 52px; z-index: 1; visibility: hidden">');
	document.write(' 	<table border="0" cellspacing="0" cellpadding="0">');
	document.write(' 		<tr>');
	document.write(' 			<td bgcolor="#FFFFFF">');
	document.write(' 				<table border=0 cellpadding=0 cellspacing=0>');
	document.write(' 					<tr id="d21t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/Hutch_work_th.htm" onMouseOut=menuRollOutImage("rollimg2","d21t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d21t","#EEEDF0") target=_top>ทำงานสไตล์ Hutch</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 					<tr id="d22t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/Hutch_people_th.htm" onMouseOut=menuRollOutImage("rollimg2","d22t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d22t","#EEEDF0") target=_top>ทีมงาน Hutch</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 					<tr id="d23t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/hutch_job_th.jsp" onMouseOut=menuRollOutImage("rollimg2","d23t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d23t","#EEEDF0") target=_top>ตำแหน่งว่าง</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 				</table>');
	document.write(' 			</td>');
	document.write(' 		</tr>');
	document.write(' 	</table>');
	document.write(' </div>');

	document.write(' <div id="Drop3t" style="position:absolute;  width: 150px; height: 52px; z-index: 1; visibility: hidden">');
	document.write(' 	<table border="0" cellspacing="0" cellpadding="0">');
	document.write(' 		<tr>');
	document.write(' 			<td bgcolor="#FFFFFF">');
	document.write(' 				<table border=0 cellpadding=0 cellspacing=0>');
	document.write(' 					<tr id="d31t" bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/h_press_th.htm#" onMouseOut=menuRollOutImage("rollimg2","d31t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d31t","#EEEDF0") target=_top>Press release</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 					<tr id="d32t" bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/media.html" target="_blank" onMouseOut=menuRollOutImage("rollimg2","d32t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d32t","#EEEDF0") target=_top>ลงทะเบียนสื่อ</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 				</table>');
	document.write(' 			</td>');
	document.write(' 		</tr>');
	document.write(' 	</table>');
	document.write(' </div>');

	document.write(' <div id="Drop4t" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden">');
	document.write(' 	<table border="0" cellspacing="0" cellpadding="0">');
	document.write(' 		<tr>');
	document.write(' 			<td bgcolor="#FFFFFF">');
	document.write(' 				<table border=0 cellpadding=0 cellspacing=0>');
	document.write(' 					<tr id="d41t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/Hutch_fun_th.htm" onMouseOut=menuRollOutImage("rollimg2","d41t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d41t","#EEEDF0") target=_top>Hutch Fun</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 					<tr id="d42t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/h_events_th.htm" onMouseOut=menuRollOutImage("rollimg2","d42t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d42t","#EEEDF0") target=_top>กิจกรรม</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 					<tr id="d43t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/h_media_th.htm" onMouseOut=menuRollOutImage("rollimg2","d43t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d43t","#EEEDF0") target=_top>Hutch มีเดีย</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 					<tr id="d44t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/hutch_download_th.htm" onMouseOut=menuRollOutImage("rollimg2","d44t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d44t","#EEEDF0") target=_top>ดาวน์โหลด</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 				</table>');
	document.write(' 			</td>');
	document.write(' 		</tr>');
	document.write(' 	</table>');
	document.write(' </div>');

	document.write(' <div id="Drop5t" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden">');
	document.write(' 	<table border="0" cellspacing="0" cellpadding="0">');
	document.write(' 		<tr>');
	document.write(' 			<td bgcolor="#FFFFFF">');
	document.write(' 				<table border=0 cellpadding=0 cellspacing=0>');
	document.write(' 					<tr id="d51t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/Hutch_mainpage_th.htm" onMouseOut=menuRollOutImage("rollimg2","d51t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d51t","#EEEDF0") target=_top>Hutch today</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 				</table>');
	document.write(' 			</td>');
	document.write(' 		</tr>');
	document.write(' 	</table>');
	document.write(' </div>');
	
	document.write(' <div id="Drop6t" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden">');
	document.write(' 	<table border="0" cellspacing="0" cellpadding="0">');
	document.write(' 		<tr>');
	document.write(' 			<td bgcolor="#FFFFFF">');
	document.write(' 				<table border=0 cellpadding=0 cellspacing=0>');
	document.write(' 					<tr id="d61t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/Hutch_hotquestion_th.htm" onMouseOut=menuRollOutImage("rollimg2","d61t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d61t","#EEEDF0") target=_top>ถาม Hutch</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');	
	document.write(' 					<tr id="d62t"  bgcolor="#FFFFFF">');
	document.write(' 						<td>');
	document.write(' 							<a class=menu href="/Hutch_get_th.jsp" onMouseOut=menuRollOutImage("rollimg2","d62t","#FFFFFF") onMouseOver=menuRollOverImage("rollimg2","d62t","#EEEDF0") target=_top>รู้จักคุณ</a>');
	document.write(' 						</td>');
	document.write(' 					</tr>');
	document.write(' 				</table>');
	document.write(' 			</td>');
	document.write(' 		</tr>');
	document.write(' 	</table>');
	document.write(' </div>');

	document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0" class="top_menu">');
	document.write('<tr> ');

	document.write('<TD width="570" align="left" vAlign=top>');
	document.write('<img src="/img/02_submenu.gif" width="546" height="22" vspace="10" border="0" usemap="#Map2t"  name="imgTabs"> ');
	document.write('</td>');
	
	document.write('<map name="Map2t">');
	document.write('  <area shape="rect" coords="471,2,545,20" href="/Hutch_film_festival_en.htm">');
	document.write('  <area shape="rect" coords="375,2,448,20" href="/Hutch_Contact_th.jsp">');
	document.write('  <area shape="rect" coords="314,2,367,20" href="#" onMouseOut="btnTimer()" onMouseOver=shLayer("Drop6t")>');
	document.write('  <area shape="rect" coords="245,2,308,20" href="#" onMouseOut="btnTimer()" onMouseOver=shLayer("Drop5t")>');
	document.write('  <area shape="rect" coords="186,2,239,20" href="#" onMouseOut="btnTimer()" onMouseOver=shLayer("Drop4t")>');
	document.write('  <area shape="rect" coords="143,2,181,20" href="#" onMouseOut="btnTimer()" onMouseOver=shLayer("Drop3t")>');
	document.write('  <area shape="rect" coords="73,2,138,20" href="#" onMouseOut="btnTimer()" onMouseOver=shLayer("Drop2t")>');
	document.write('  <area shape="rect" coords="1,2,68,20" href="#" onClick="javascript:window.open(\'http://www.hutch.co.th/index.jsp\')" onMouseOut="btnTimer()" onMouseOver=shLayer("Drop1t")>');
	document.write('</map>');

	document.write('</tr>');
	document.write('</table>');

}

var cur_menu;
function slide_menu(menu){
	if(cur_menu==menu){
		home.style.textAlign = 'right';
		menu.style.textAlign  = 'left';
		return;
	}
	home.style.textAlign = 'left';
	menu.style.textAlign  = 'right';
	if(cur_menu!=null){
		cur_menu.style.textAlign  = 'left';
	}
	cur_menu=menu;
}

function left_menu_eng(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');
	
	document.write('<TD width="160" align="right" vAlign=top><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="115" height="100" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/img/H_logo.swf">');
	document.write('  <param name="quality" value="high">');

	document.write('  <embed src="/img/H_logo.swf" width="115" height="100" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write('<img src="/img/02_menu_en_part01.gif" width="152" height="217" border="0" usemap="#Map"> ');
/*	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="148" height="102" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/moto_tv_banner_en.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/moto_tv_banner_en.swf" width="148" height="102" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
*/	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145.7" height="118.9" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/say-10-10-03_en.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/say-10-10-03_en.swf" width="145.7" height="118.9" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
    document.write('  <a href="http://www.hutch.co.th/myhutch">');
	document.write('	<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('  </a>');
/*	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="153" height="138" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/banner_service_en.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/banner_service_en.swf" width="153" height="138" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write(' </TD>');
*/	
	document.write(' <map name="Map">');
	document.write('  <area shape="rect" coords="2,290,69,314" href="/02_say_en.htm">');
	document.write('  <area shape="rect" coords="69,290,142,315" href="/say_promotion_en.htm">');
	document.write('  <area shape="rect" coords="1,394,144,417" href="/Hutch_Service_Demo_en.htm">');
	document.write('  <area shape="rect" coords="1,181,144,201" href="/Hutch_Contact_en.jsp">');
	document.write('  <area shape="rect" coords="1,159,144,180" href="/register_prospect_en.jsp">');
	document.write('  <area shape="rect" coords="2,142,144,160" href="/Hutch_shop_en.htm">');
	document.write('  <area shape="rect" coords="1,121,144,141" href="/hutch_ir_en.htm">');
	document.write('  <area shape="rect" coords="1,102,143,120" href="/Hutch_care_en.htm">');
	document.write('  <area shape="rect" coords="1,80,144,101" href="/Hutch_promotion_en.htm">');
	document.write('  <area shape="rect" coords="1,69,144,79" href="/Hutch_Service_Demo_en.htm">');
	document.write('  <area shape="rect" coords="1,59,143,69" href="/Hutch_handset_en.htm">');
	document.write('  <area shape="rect" coords="1,40,145,59" href="/Hutch_Service_en.htm">');
	document.write('  <area shape="rect" coords="1,21,143,39" href="/Hutch_Products_en.htm">');
	document.write('  <area shape="rect" coords="1,2,143,20" href="/Hutch_mainpage_en.htm">');
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

/* RaTN CoDE StarT */
function left_menu_say_thai(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');

	document.write('<TD width="160" height="447" align="right" vAlign=top><a href="/say_mainpage_th.htm"><img src="/img/h_logo_line.gif" width="103" height="99" hspace="8" vspace="10" border="0"></a> ');
    document.write('    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145" height="220" hspace="5">');
    document.write('      <param name="movie" value="/img/multimedia_menu.swf">');
    document.write('      <param name="quality" value="high">');
    document.write('      <embed src="/img/multimedia_menu.swf" width="145" height="220" hspace="5" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
  	document.write('  	</object>');
	document.write('	<br>');
	document.write('	<img src="/img/02say_banner_th(1).jpg" width="149" height="104" border="0" usemap="#Map_Say_Pics">');
    document.write('	<br>');
    document.write('	<a href="http://www.hutch.co.th/myhutch">');
	document.write('		<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('	</a>');
	document.write('</TD>');
	//map
	document.write(' <map name="Map_Say_Pics">');
	//main pics.
	document.write('<area shape="rect" coords="83,69,142,82" href="/say_more_th.htm">');	
	document.write('<area shape="rect" coords="63,82,142,94" href="/say_handset_th.htm">');
	document.write('<area shape="rect" coords="0,82,63,94" href="/HutchRedbull/Hutchsay.htm">');
	document.write('<area shape="rect" coords="1,1,142,70" href="/say_mainpage_th.htm" target="_self">');
	
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

/* say menu with shift one step back */
function left_menu_say_stepback_thai(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');

	document.write('<TD width="160" height="447" align="right" vAlign=top><a href="/say_mainpage_th.htm"><img src="/img/h_logo_line.gif" width="103" height="99" hspace="8" vspace="10" border="0"></a> ');
    document.write('    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145" height="220" hspace="5">');
    document.write('      <param name="movie" value="/img/multimedia_menu.swf">');
    document.write('      <param name="quality" value="high">');
    document.write('      <embed src="/img/multimedia_menu.swf" width="145" height="220" hspace="5" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
  	document.write('  	</object>');
	document.write('	<br>');
	document.write('	<img src="/img/02say_banner_th(1).jpg" width="149" height="104" border="0" usemap="#Map_Say_Pics">');
    document.write('	<br>');
    document.write('	<a href="http://www.hutch.co.th/myhutch">');
	document.write('		<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('	</a>');
	document.write('</TD>');
	//map
	document.write(' <map name="Map_Say_Pics">');
	//main pics.
	document.write('<area shape="rect" coords="83,69,142,82" href="/say_more_th.htm">');	
	document.write('<area shape="rect" coords="63,82,142,94" href="/say_handset_th.htm">');
	document.write('<area shape="rect" coords="0,82,63,94" href="/Hutchsay.htm">');
	document.write('<area shape="rect" coords="1,1,142,70" href="/say_mainpage_th.htm" target="_self">');
	
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

function left_menu_film_thai(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');

	document.write('<TD width="160" align="right" vAlign=top><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="115" height="100" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/H_logo_th_new.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/H_logo_th_new.swf" width="115" height="100" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write('<img src="/img/02_menu_th_part01.gif" width="152" height="215" border="0" usemap="#Map"> ');
/*	document.write('<br>');
	document.write('<img src="/img/main01_10_03_2.gif" width="146" height="119" border="0" usemap="#Map_1_10_03"> ');
	document.write('<map name="Map_1_10_03">');
  	document.write('	<area shape="rect" coords="0,0,142,167" href="/say_mainpage_th.htm">'); //164,194
	document.write('</map>');
*/	
/*	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="153" height="138" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/banner_service.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/banner_service.swf" width="153" height="138" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
*/	document.write(' </TD>');
	//map
	document.write(' <map name="Map">');
	//main pics.
	document.write('  <area shape="rect" coords="1,2,145,21" href="/Hutch_mainpage_th.htm">');
	document.write('  <area shape="rect" coords="1,22,145,40" href="/Hutch_Products_th.htm">');
	document.write('  <area shape="rect" coords="1,41,145,59" href="/Hutch_Service_th.htm">');
	document.write('  <area shape="rect" coords="1,60,145,79" href="/Hutch_handset_th.htm">');
	document.write('  <area shape="rect" coords="1,80,145,95" href="/Hutch_Service_Demo_th.htm">');
	document.write('  <area shape="rect" coords="1,96,145,115" href="/Hutch_promotion_th.htm">');
	document.write('  <area shape="rect" coords="1,116,145,132" href="/Hutch_care_th.htm">');
	document.write('  <area shape="rect" coords="1,133,145,153" href="/hutch_ir_th.htm">');
	document.write('  <area shape="rect" coords="1,154,145,170" href="/Hutch_shop_th.htm">');
	document.write('  <area shape="rect" coords="1,171,145,191" href="/register_prospect_th.jsp">');
	document.write('  <area shape="rect" coords="1,192,145,208" href="/Hutch_Contact_th.jsp">');
	//say pics.
	document.write('  <area shape="rect" coords="2,290,69,314" href="/02_say_th.htm">');
	document.write('  <area shape="rect" coords="69,290,142,315" href="/say_promotion_th.htm">');
	
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}


function left_menu_stepback_thai(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');

	document.write('<TD width="160" align="right" vAlign=top><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="115" height="100" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/H_logo_th_new.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/H_logo_th_new.swf" width="115" height="100" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write('<img src="/img/02_menu_th_part01.gif" width="152" height="215" border="0" usemap="#Map"> ');
/*	document.write('<br>');
	document.write('<img src="/img/main01_10_03_2.gif" width="146" height="119" border="0" usemap="#Map_1_10_03"> ');
	document.write('<map name="Map_1_10_03">');
  	document.write('	<area shape="rect" coords="0,0,142,167" href="/say_mainpage_th.htm">'); //164,194
	document.write('</map>');
*/	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145.7" height="118.9" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/say-10-10-03.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/say-10-10-03.swf" width="145.7" height="118.9" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
    document.write('  <a href="http://www.hutch.co.th/myhutch">');
	document.write('	<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('  </a>');
/*	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="153" height="138" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/banner_service.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/banner_service.swf" width="153" height="138" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
*/	document.write(' </TD>');
	//map
	document.write(' <map name="Map">');
	//main pics.
	document.write('  <area shape="rect" coords="1,2,145,21" href="/Hutch_mainpage_th.htm">');
	document.write('  <area shape="rect" coords="1,22,145,40" href="/Hutch_Products_th.htm">');
	document.write('  <area shape="rect" coords="1,41,145,59" href="/Hutch_Service_th.htm">');
	document.write('  <area shape="rect" coords="1,60,145,79" href="/Hutch_handset_th.htm">');
	document.write('  <area shape="rect" coords="1,80,145,95" href="/Hutch_Service_Demo_th.htm">');
	document.write('  <area shape="rect" coords="1,96,145,115" href="/Hutch_promotion_th.htm">');
	document.write('  <area shape="rect" coords="1,116,145,132" href="/HutchRedbull/Hutchxo.htm">');
	document.write('  <area shape="rect" coords="1,133,145,153" href="/hutch_ir_th.htm">');
	document.write('  <area shape="rect" coords="1,154,145,170" href="/Hutch_shop_th.htm">');
	document.write('  <area shape="rect" coords="1,171,145,191" href="/register_prospect_th.jsp">');
	document.write('  <area shape="rect" coords="1,192,145,208" href="/Hutch_Contact_th.jsp">');
	//say pics.
	document.write('  <area shape="rect" coords="2,290,69,314" href="/02_say_th.htm">');
	document.write('  <area shape="rect" coords="69,290,142,315" href="/say_promotion_th.htm">');
	
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

function left_menu_film_eng(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');
	
	document.write('<TD width="160" align="right" vAlign=top><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="115" height="100" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/img/H_logo.swf">');
	document.write('  <param name="quality" value="high">');

	document.write('  <embed src="/img/H_logo.swf" width="115" height="100" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write('<img src="/img/02_menu_en_part01.gif" width="152" height="217" border="0" usemap="#Map"> ');
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="148" height="102" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/say_banner_en.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/say_banner_en.swf" width="148" height="102" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write(' </TD>');
	
	document.write(' <map name="Map">');
	document.write('  <area shape="rect" coords="2,290,69,314" href="/02_say_en.htm">');
	document.write('  <area shape="rect" coords="69,290,142,315" href="/say_promotion_en.htm">');
	document.write('  <area shape="rect" coords="1,394,144,417" href="/Hutch_Service_Demo_en.htm">');
	document.write('  <area shape="rect" coords="1,181,144,201" href="/Hutch_Contact_en.jsp">');
	document.write('  <area shape="rect" coords="1,159,144,180" href="/register_prospect_en.jsp">');
	document.write('  <area shape="rect" coords="2,142,144,160" href="/Hutch_shop_en.htm">');
	document.write('  <area shape="rect" coords="1,121,144,141" href="/hutch_ir_en.htm">');
	document.write('  <area shape="rect" coords="1,102,143,120" href="/Hutch_care_en.htm">');
	document.write('  <area shape="rect" coords="1,80,144,101" href="/Hutch_promotion_en.htm">');
	document.write('  <area shape="rect" coords="1,69,144,79" href="/Hutch_Service_Demo_en.htm">');
	document.write('  <area shape="rect" coords="1,59,143,69" href="/Hutch_handset_en.htm">');
	document.write('  <area shape="rect" coords="1,40,145,59" href="/Hutch_Service_en.htm">');
	document.write('  <area shape="rect" coords="1,21,143,39" href="/Hutch_Products_en.htm">');
	document.write('  <area shape="rect" coords="1,2,143,20" href="/Hutch_mainpage_en.htm">');
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

function left_menu_stepback_eng(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');
	
	document.write('<TD width="160" align="right" vAlign=top><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="115" height="100" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/img/H_logo.swf">');
	document.write('  <param name="quality" value="high">');

	document.write('  <embed src="/img/H_logo.swf" width="115" height="100" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
	document.write('<img src="/img/02_menu_en_part01.gif" width="152" height="217" border="0" usemap="#Map"> ');
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="148" height="102" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/say_banner_en.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/say_banner_en.swf" width="148" height="102" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145.7" height="118.9" hspace="8" vspace="6">');
	document.write('  <param name="movie" value="/swf/say-10-10-03_en.swf">');
	document.write('  <param name="quality" value="high">');
	document.write('  <embed src="/swf/say-10-10-03_en.swf" width="145.7" height="118.9" hspace="8" vspace="6" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>');
    document.write('  <a href="http://www.hutch.co.th/myhutch">');
	document.write('	<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('  </a>');
	document.write(' </TD>');
	
	document.write(' <map name="Map">');
	document.write('  <area shape="rect" coords="2,290,69,314" href="/02_say_en.htm">');
	document.write('  <area shape="rect" coords="69,290,142,315" href="/say_promotion_en.htm">');
	document.write('  <area shape="rect" coords="1,394,144,417" href="/Hutch_Service_Demo_en.htm">');
	document.write('  <area shape="rect" coords="1,181,144,201" href="/Hutch_Contact_en.jsp">');
	document.write('  <area shape="rect" coords="1,159,144,180" href="/register_prospect_en.jsp">');
	document.write('  <area shape="rect" coords="2,142,144,160" href="/Hutch_shop_en.htm">');
	document.write('  <area shape="rect" coords="1,121,144,141" href="/hutch_ir_en.htm">');
	document.write('  <area shape="rect" coords="1,102,143,120" href="/Hutch_care_en.htm">');
	document.write('  <area shape="rect" coords="1,80,144,101" href="/Hutch_promotion_en.htm">');
	document.write('  <area shape="rect" coords="1,69,144,79" href="/Hutch_Service_Demo_en.htm">');
	document.write('  <area shape="rect" coords="1,59,143,69" href="/Hutch_handset_en.htm">');
	document.write('  <area shape="rect" coords="1,40,145,59" href="/Hutch_Service_en.htm">');
	document.write('  <area shape="rect" coords="1,21,143,39" href="/Hutch_Products_en.htm">');
	document.write('  <area shape="rect" coords="1,2,143,20" href="/Hutch_mainpage_en.htm">');
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

function left_menu_say_eng(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');

	document.write('<TD width="160" height="447" align="right" vAlign=top><a href="/say_mainpage_en.htm"><img src="/img/h_logo_line.gif" width="103" height="99" hspace="8" vspace="10" border="0"></a> ');
    document.write('    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145" height="220" hspace="5">');
    document.write('      <param name="movie" value="/img/multimedia_menu.swf">');
    document.write('      <param name="quality" value="high">');
    document.write('      <embed src="/img/multimedia_menu.swf" width="145" height="220" hspace="5" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
  	document.write('  	</object>');
	document.write('	<br>');
	document.write('	<img src="/img/02say_banner_en(1).jpg" width="149" height="104" border="0" usemap="#Map_Say_Pics">');
	document.write('	<br>');
	document.write('	<a href="http://www.hutch.co.th/myhutch">');
	document.write('		<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('	</a>');
    document.write('</TD>');
	//map
	document.write(' <map name="Map_Say_Pics">');
	//main pics.
	document.write('<area shape="rect" coords="72,71,142,82" href="/say_more_en.htm">');
	document.write('<area shape="rect" coords="72,82,142,95" href="/say_handset_en.htm">');
	document.write('<area shape="rect" coords="2,81,72,95" href="/HutchRedbull/Hutchsay.htm">');
	document.write('<area shape="rect" coords="1,1,142,71" href="/say_mainpage_en.htm" target="_self">');
	
    document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

/* say menu with shift one step back */
function left_menu_say_stepback_eng(){
	document.write('<table width="100%" cellpadding="2" class="left_menu">');
	document.write('  <tr> ');
	document.write('<TD width="160" height="447" align="right" vAlign=top><a href="/say_mainpage_en.htm"><img src="/img/h_logo_line.gif" width="103" height="99" hspace="8" vspace="10" border="0"></a> ');
    document.write('    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="145" height="220" hspace="5">');
    document.write('      <param name="movie" value="/img/multimedia_menu.swf">');
    document.write('      <param name="quality" value="high">');
    document.write('      <embed src="/img/multimedia_menu.swf" width="145" height="220" hspace="5" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
  	document.write('  	</object>');
	document.write('	<br>');
	document.write('	<img src="/img/02say_banner_en(1).jpg" width="149" height="104" border="0" usemap="#Map_Say_Pics">');
	document.write('	<br>');
	document.write('	<a href="http://www.hutch.co.th/myhutch">');
	document.write('		<img src="/img/banner.gif" width="149" height="104" border="0" usemap="#Map_Banner_Pics">');
    document.write('	</a>');
    document.write('</TD>');
	//map
	document.write(' <map name="Map_Say_Pics">');
	//main pics.
	document.write('<area shape="rect" coords="72,71,142,82" href="/say_more_en.htm">');
	document.write('<area shape="rect" coords="72,82,142,95" href="/say_handset_en.htm">');
	document.write('<area shape="rect" coords="2,81,72,95" href="/Hutchsay.htm">');
	document.write('<area shape="rect" coords="1,1,142,71" href="/say_mainpage_en.htm" target="_self">');
	
	document.write('</map>');
	
	document.write('  </tr>');
	document.write('</table>');
}

function left_menu_thai(){
	document.write('<table width="177" border="0" cellpadding="0" cellspacing="0">');
	document.write('				<tr>					');
	//document.write('    <td><a href="/home.html"><img src="/images/logo.jpg" width="114" height="123" border="0"></a></td>');
	document.write('    <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="160" height="115" hspace="5">');
    document.write('      <param name="movie" value="/swf/logohutch.swf">');
    document.write('      <param name="quality" value="high">');
    document.write('      <embed src="/swf/logohutch.swf" width="160" height="115" hspace="5" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
  	document.write('  	</object></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td height="10"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('				</tr>');
	document.write('				<tr>					');
	document.write('       		<td><a href="/index_th.htm"><img src="/images/menu_home_on.jpg" alt="Home Page" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/say/index_th.htm" target="_blank" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'say\',\'\',\'/images/menu_say_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_say.jpg" alt="HutchSay" name="say" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/play/index_th.htm" target="_blank" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'play\',\'\',\'/images/menu_play_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_play.jpg" alt="HutchPlay" name="play" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/real/index_th.htm" target="_blank" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'real\',\'\',\'/images/menu_real_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_real.jpg" alt="HutchReal" name="real" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/Hutch_shop_th.htm" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'store\',\'\',\'/images/menu_store_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_store.jpg" alt="Store Locator" name="store" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/Hutch_care_th.htm" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'care\',\'\',\'/images/menu_care_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_care.jpg" alt="Care" name="care" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/hutch_ir_th.htm" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'inter\',\'\',\'/images/menu_inter_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_inter.jpg" alt="International Roaming" name="inter" width="177" height="26" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td><a href="/register_prospect_th.jsp" onFocus="if(this.blur)this.blur()" onMouseOver="MM_swapImage(\'register\',\'\',\'/images/menu_regis_ov.jpg\',1)" onMouseOut="MM_swapImgRestore()"><img src="/images/menu_regis.jpg" alt="Register" name="register" width="177" height="27" border="0"></a></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td height="23"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('				</tr>');
	document.write('				<tr>');

	document.write('					<td><img src="/images/tellafriend.jpg" width="177" height="14" border="0"></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td height="21"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td>');
	document.write('						<table width="100%" border="0" cellpadding="0" cellspacing="0">');
	document.write('							<tr>');
	document.write('								<td width="8%"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('								<td background="/images/dot.jpg" width="3" height="1"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('							</tr>						');
	document.write('						</table>');
	document.write('					</td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					<td height="21"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('				</tr>');
	document.write('				<tr>');
	document.write('					');
	document.write('    <td><a href="/myhutch"><img src="/images/home01.jpg" width="177" height="107" border="0"></a></td>');
	document.write('				</tr>');
	document.write('			</table>');
}

function bottom_menu_eng(){
	document.write('<table width="100%" border="0">');
	
	document.write(' <TR align="left"> ');
	document.write('    <TD colSpan=3 valign="top" class=bodyTextSmall> <img src="/img/02_copyright_en.gif" width="525" height="14" border="0" usemap="#Map3"></TD>');
	document.write(' </TR>');
	document.write(' <map name="Map3">');
	document.write(' <area shape="rect" coords="209,0,304,13" href="#" onclick="javascript:window.open(\'/term.html\', \'NewWin\', \'width=750, height=550\')">');
    document.write(' <area shape="rect" coords="311,0,356,13" href="#" onclick="javascript:window.open(\'http://www.hutch.co.th/privacy.html\', \'NewWin\', \'width=750, height=550\')">');
    document.write(' <area shape="rect" coords="362,0,407,13" href="/Hutch_sitemap_en.htm">');
	document.write(' </map>');

	document.write('</table>');
}

function sendHidden(hiddenValue){
	//	alert("RaTN >> " + document.all.formYearMonth.yearMonth.value);
	strYearMonth = hiddenValue;
	//alert("RaTN >> " + strYearMonth);	
	center_menu_thai();
}

function center_menu_thai(){
	document.write('<table width="90%" border="0" cellpadding="0" cellspacing="1">');
	//alert("RaTN >> " + strYearMonth);
	if (strYearMonth == "hot"){
		document.write('  <tr valign="top">'); 
		document.write('	<td height="44"><font size="1" face="MS Sans Serif">18 ก.ค. 46</font></td>');
		document.write('	<td><font size="1" face="MS Sans Serif"><a href="/h_press_karaoke_th.htm">Hutch'); 
		document.write('	  เผยโฉมบริการใหม่ คาราโอเกะผ่านมือถือ ด้วยเพลงฮิตล่าสุดจากแกรมมี่กว่า'); 
		document.write('	  100 เพลงบนมือถือรุ่นล่าสุด ซัมซุง SCH-A564 พร้อมสร้างสีสันใหม่ด้วยการจัดประกวด'); 
		document.write('	  Hutch Karaoke Challenge</a></font></td>');
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td height="43"><font size="1" face="MS Sans Serif">8 ก.ค. 46</font></td>');
		document.write('	<td><font size="1" face="MS Sans Serif"><a href="/h_press_MxBroker_th.htm">ธนชาติ'); 
		document.write('	  จับมือ ฮัทช์ และเซ็ทเทรดสร้างนวัตกรรมใหม่ Mx-Broker เพิ่มช่องทางการลงทุนผ่านโทรศัพท์มือถือมัลติมีเดียไร้สายความเร็วสูงระบบ'); 
		document.write('	  CDMA2000 1X</a></font>'); 
		document.write('	  <p></p></td>');			  
		document.write('  </tr>');
	}else if (strYearMonth == "2546"){
		document.write('  <tr valign="top">'); 
		document.write('	<td height="44"><font size="1" face="MS Sans Serif">18 ก.ค. 46</font></td>');
		document.write('	<td><font size="1" face="MS Sans Serif"><a href="/h_press_karaoke_th.htm">Hutch'); 
		document.write('	  เผยโฉมบริการใหม่ คาราโอเกะผ่านมือถือ ด้วยเพลงฮิตล่าสุดจากแกรมมี่กว่า'); 
		document.write('	  100 เพลงบนมือถือรุ่นล่าสุด ซัมซุง SCH-A564 พร้อมสร้างสีสันใหม่ด้วยการจัดประกวด'); 
		document.write('	  Hutch Karaoke Challenge</a></font></td>');
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td height="43"><font size="1" face="MS Sans Serif">8 ก.ค. 46</font></td>');
		document.write('	<td><font size="1" face="MS Sans Serif"><a href="/h_press_MxBroker_th.htm">ธนชาติ'); 
		document.write('	  จับมือ ฮัทช์ และเซ็ทเทรดสร้างนวัตกรรมใหม่ Mx-Broker เพิ่มช่องทางการลงทุนผ่านโทรศัพท์มือถือมัลติมีเดียไร้สายความเร็วสูงระบบ'); 
		document.write('	  CDMA2000 1X</a></font>'); 
		document.write('	  <p></p></td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td height="45"><font size="1" face="MS Sans Serif">1 ก.ค. 46</font></td>');
		document.write('	<td><font size="1" face="MS Sans Serif"><a href="/h_press_July_1_03_th.htm">Hutch'); 
		document.write('	  เผยกลยุธ์ขยายฐานลูกค้า ด้วยแคมเปญล่าสุด ซื้อหนึ่งแถมหนึ่ง สำหรับลูกค้าที่ซื้อโทรศัพท์มือถือซันโย<br>');
		document.write('	  พร้อมแนะนำบริการล่าสุด SaybyHutch ที่สุดแห่งคุณภาพเสียงคมชัด</a></font></td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">13 มิ.ย. 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_kang_jor_th.htm">'); 
		document.write('	  Hutch หนุนกิจกรรมนักศึกษาในงาน กางจอ 10</a><br>');
		document.write('  <br>');
		document.write('  </font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">1 มิ.ย. 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_june_promotion_th.htm">'); 
		document.write('	  Hutch ส่งแคมเปญเขย่าตลาด นำเสนอ 4 แพ็กเกจสุดคุ้มแก่ผู้ใช้</a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">26 พ.ค. 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_may_26_03-2_th.htm">'); 
		document.write('	  Hutch มอบ Hutch Terminal Sanyo SCP-550 ให้กับผู้โชคดีในงาน MONEY'); 
		document.write('	  EXPO\'03 </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">26 พ.ค. 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_may_26_03_th.htm">'); 
		document.write('	  การสื่อสารแห่งประเทศไทยเปิดบริการ CDMA2000 1X ข้ามแดนอัตโนมัติไปยังประเทศจีน'); 
		document.write('	  ฮ่องกง เกาหลีใต้ และนิวซีแลนด์ สำหรับลูกค้า Hutch แล้ววันนี้ </a><br>');
		document.write('	  <br>');
		document.write('    </font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">5 พ.ค. 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_may_5_03_th.htm">'); 
		document.write('	  Hutch มอบข้อเสนอพิเศษสุดแก่สมาชิกบัตรเครดิตกสิกรไทย</a><br>');
		document.write('	  <br>');
		document.write('    </font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">3 พ.ค. 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_may_06_03_th.htm">'); 
		document.write('	  Hutch แรงไม่หยุด เสนอโปรโมชั่นสุดคุ้มสำหรับวัยรุ่นตลอดเดือนพฤษภาคมนี้'); 
		document.write('	  </a><br>');
		document.write('	  <br>');
		document.write('  </font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">30 เมย 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_may_shop_06_03_th.htm">'); 
		document.write('	  Hutch รุกตลาดต่อเนื่อง ถือโอกาสเปิด Hutch Shop สาขาใหม่ ดึงลูกค้าร่วมประสบการณ์มัลติมีเดียไร้สายความเร็วสูงในรูปแบบที่ไม่เหมือนใคร'); 
		document.write('	  </a><br>');
		document.write('	  <br>');
		document.write('  	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">24 เมย 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_april_24_03_th.htm">'); 
		document.write('	  ฮัทชิสันมอบคอมพิวเตอร์สนับสนุนโครงการพัฒนาเด็กไทยด้วย ICT </a><br>');
		document.write('	  <br>');
		document.write('  	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">21 เมย 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_april_21_03_th.htm">'); 
		document.write('	  Hutch เสนอโปรโมชั่นใหม่ มอบคูปองมูลค่า 4,000 บาท สำหรับซื้อเครื่อง'); 
		document.write('	  พร้อมแพ็กเกจราคาใหม่ที่ให้สิทธิประโยชน์กว่าเดิม </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td width="60"><font size="1" face="MS Sans Serif">18 เมย 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_april_18_03_th.htm">'); 
		document.write('	  MTV ออกล่าแล้ว!!! ใครจะเป็นรายต่อไป??? MTV VJ Hunt 2003 กลับมาแล้ว'); 
		document.write('	  คราวนี้มาพร้อมกับ Hutch! </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">27 มีค 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_march_27_03_th.htm">'); 
		document.write('	  Hutch จัดโปรโมชั่นพิเศษให้เลือกเบอร์สวย พร้อมของที่ระลึกสุดเก๋ ตั้งแต่'); 
		document.write('	  27-31 มีนาคมนี้</a><br>');
		document.write('	  <br>');
		document.write('  	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">26 มีค 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_Wireless_th.htm">Sierra'); 
		document.write('	  เซียร์ร่า ไวร์เลส จับมือ Hutch จำหน่ายไวร์เลส พีซี การ์ดความเร็วสูงในประเทศไทย</a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">18 มีค 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_SAMSUNG_th.htm">'); 
		document.write('	  \'Hutch\' อวดโฉมโทรศัพท์มือถือ CDMA2000 1X เครื่องที่ 2 ชูฟังก์ชั่นคาราโอเกะเป็นเครื่องแรก');
		document.write('	  พร้อมบันเทิงครบครัน</a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">11 มีค 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_Lucky_th.htm">'); 
		document.write('	  Hutch มอบโทรศัพท์มือถือให้กับผู้โชคดีที่ลงทะเบียนใน www.hutch.co.th</a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">3 มีค 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_march_3_03_th.htm">'); 
		document.write('	  \'Hutch\' จัดงาน "International Roaming Team Conference" เพื่อพัฒนา'); 
		document.write('	  CDMA2000 1X </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">1 มีค 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_march_1_03_th.htm">'); 
		document.write('	  Hutch ส่งกิจกรรม \'Hutch Landing\' ตอกย้ำกระแส Hutch พร้อมเปิดขายโทรศัพท์มือถือ'); 
		document.write('	  \'Hutch\'เป็นครั้งแรกแล้ววันนี้ </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">27 กพ 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_CDMA_14_march_th.htm">'); 
		document.write('	  การสื่อสารแห่งประเทศไทยจับมือฮัทชิสันประกาศเปิดให้บริการระบบมัลติมีเดีย'); 
		document.write('	  ไร้สายความเร็วสูงด้วยเทคโนโลยี CDMA2000 1X สู่ตลาดเมืองไทยเป็นรายแรก'); 
		document.write('	  </a><br>');
		document.write('	  <br>');
		document.write('  	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">22 กพ 46</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_feb_22_03_th.htm">'); 
		document.write('	  ปลุกกระแส \'Hutch\' ทั่วกรุงเทพฯ แล้ววันนี้ ด้วยกิจกรรม \'Hutch Day\''); 
		document.write('	  </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">23 ธค 45</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_dec_23_03_th.htm">'); 
		document.write('	  \'Hutch\' เผยโฉมโทรศัพท์มือถือ CDMA2000 1X เครื่องแรก </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');	
	}else if (strYearMonth == "2545"){
		document.write('  <tr valign="top">'); 
		document.write('	<td><font size="1" face="MS Sans Serif">23 ธค 45</font></td>');
		document.write('	<td> <font size="1" face="MS Sans Serif"><a href="/h_press_dec_23_03_th.htm">'); 
		document.write('	  \'Hutch\' เผยโฉมโทรศัพท์มือถือ CDMA2000 1X เครื่องแรก </a><br>');
		document.write('	  <br>');
		document.write('	</font> </td>');			  
		document.write('  </tr>');
	}
	
	document.write('</table>');
}


function bottom_menu_thai(){
	document.write('<table width="100%" border="0">');
	
	document.write(' <TR align="left"> ');
	document.write('    <TD colSpan=3 valign="top" class=bodyTextSmall> <img src="/img/02_copyright.gif" width="525" height="14" border="0" usemap="#Map3"></TD>');
	document.write(' </TR>');
	document.write(' <map name="Map3">');
	document.write(' 	<area shape="rect" coords="217,0,304,13" href="#" onclick="javascript:window.open(\'/term.html\', \'NewWin\', \'width=750, height=550\')">');
    document.write(' 	<area shape="rect" coords="316,0,354,13" href="#" onclick="javascript:window.open(\'http://www.hutch.co.th/privacy.html\', \'NewWin\', \'width=750, height=550\')">');
    document.write(' 	<area shape="rect" coords="364,0,413,13" href="/Hutch_sitemap_th.htm">');
	document.write(' </map>');

	document.write('</table>');
}

function bottom_menu_film_thai(){
	document.write('<table width="100%" border="0" class="bottom_menu">');
	
	document.write(' <TR align="right"> ');
	document.write('    <TD colSpan=3 valign="top" class=bodyTextSmall> <img src="/img/02_copyright.gif" width="525" height="14" hspace="50" vspace="16" border="0" usemap="#Map3"></TD>');
	document.write(' </TR>');
	document.write(' <map name="Map3">');
	document.write(' 	<area shape="rect" coords="217,0,304,13" href="#" onclick="javascript:window.open(\'/term.html\', \'NewWin\', \'width=750, height=550\')">');
    document.write(' 	<area shape="rect" coords="316,0,354,13" href="#" onclick="javascript:window.open(\'http://www.hutch.co.th/privacy.html\', \'NewWin\', \'width=750, height=550\')">');
    document.write(' 	<area shape="rect" coords="364,0,413,13" href="/Hutch_sitemap_th.htm">');
	document.write(' </map>');

	document.write('</table>');
}

function loadPage(URL) {
    if (URL != "" ) {
        if (URL == "divide" ) {reset();} else { document.location.href = URL;}
    }
    return false;
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function openProduct(URL){
	var posTop = window.screenTop+150;
	var posLeft =	window.screenLeft-20;
	if(URL != ""){
		window.open('/p_frame.jsp?p_file='+URL, 'NewWin', 'top='+posTop+',left='+posLeft+',width=500, height=400,scrollbars=1');
	}
}

function loadPage(URL) {
    if (URL != "" ) {
        if (URL == "divide" ) {reset();} else { document.location.href = URL;}
    }
    return false;
}

//---------------------- [Start] Show tree on mouse click of left text ------------------------

function checkcontained(e,indx){
//alert("1");
var strPic = "";
if (indx == 1){
 strPic = "img/02_menu_th_part01_01.gif";
}else if (indx == 2){
 strPic = "img/02_menu_th_part01_02.gif";
}else{
 strPic = "img/02_menu_th_part01_03.gif";
}


img1=new Image()
img1.src=strPic;
img2=new Image()
img2.src=strPic;

var ns6=document.getElementById&&!document.all
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1

//--alert("2");
 var iscontained=0
 cur=ns6? e.target : event.srcElement
 i=0
 if (cur.id=="foldheader"){
  //--alert("3");
  iscontained=1
 }
 else{
  //--alert("4");
  while (ns6&&cur.parentNode||(ie4&&cur.parentElement)){
   //--alert("5");
   if (cur.id=="foldheader"||cur.id=="foldinglist"){
   	//--alert("6");
    iscontained=(cur.id=="foldheader")? 1 : 0
    break
   }  
   //--alert("7");
   cur=ns6? cur.parentNode : cur.parentElement
  }
 }

 if (iscontained){
  //--alert("8");
  
  var foldercontent=ns6? cur.nextSibling.nextSibling : cur.all.tags("UL")[0]
  if (foldercontent.style.display=="none"){
  	//--alert("in 1");
   foldercontent.style.display=""
   //cur.style.listStyleImage="url(images/open.gif)"
   cur.style.listStyleImage="url(strPic)"  
  }
  else{
   //--alert("9");
   foldercontent.style.display="none"
   //cur.style.listStyleImage="url(images/fold.gif)"
   cur.style.listStyleImage="url(strPic)"
  }
 }
}

//---------------------- [ End ] Show tree on mouse click of left text ------------------------

function toggleview(objElement)
{
	if (objElement != menu1)
	{
		menu1.style.display = "none";
	}/*
	if (objElement != menu2)
	{
		menu2.style.display = "none";
	}
	*/


	if(objElement.style.display == "none"){
	objElement.style.display = ""
	}
	else{
	objElement.style.display = "none"
	}

}

//-------------------- [Start] Function for top_menu_thai [29 / 08 /46] -----------------------

function techNotesPopup() 
{
   window.open("/download_technotes.htm", "technotes", "width=540,height=480,menubar=no,location=no,scrollbars=yes,resizable=yes,toolbar=yes");
}

function techNotesPopupNT()
{
   window.open("/download_technotes_nt.htm", "technotes","width=300,height=300,menubar=no,location=no,scrollbars=yes,resizable=yes,toolbar=yes");
}

function findObj(n, d) {
   var p,i,x;
   if (!d)
      d = document;
   if ( ( p = n.indexOf("?") ) > 0 && parent.frames.length ) {
      d = parent.frames[ n.substring(p+1) ].document;
      n = n.substring(0,p);
   }

   if ( !(x = d[n]) && d.all )
      x = d.all[n];

   for ( i=0; !x && i < d.forms.length ; i++ )
      x = d.forms[i][n];

   for ( i=0 ; !x && d.layers && i < d.layers.length ; i++ )
      x = findObj( n, d.layers[i].document);

   return x;
}

function showHideLayers() {
  cancelHide();

  var i,p,v,obj,args = showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) {
     if ( ( obj = findObj (args[i]) ) != null ) {
        v = args[i+2];
        if (obj.style) {
           obj = obj.style;
           if (v=='show')
              v = 'visible';
           else if (v == 'hide')
              v = 'hidden';
        }

        obj.visibility=v;
     }
  }
}

var hidemenu;

function scheduleMenuHide() {
   hidemenu = true;
   setTimeout("hideMenu()", 3000);
}

function hideMenu() {
   if (hidemenu) {

showHideLayers('solutions','','hide','login','','hide','store','','hide','downloads','','hide','support','','hide','company','','hide');
   }
}

function cancelHide() {
   hidemenu = false;
}

//-------------------- [ End ] Function for top_menu_thai [29 / 08 /46] -----------------------


//-------------------- [Start] Function for left_menu_main_thai [11 / 11 / 46] -----------------------
function left_menu_main_thai(){
	var menuitem = new Array();
	var menulink = new Array();
	
	menuitem[0]='หน้าหลัก';
	menuitem[1]='HutchReal';
	menuitem[2]='HutchPlay'
	menuitem[3]='HutchSay';
//	menuitem[4]='ฮัทช์กันได้ที่ไหน';
//	menuitem[5]='Care';
//	menuitem[6]='บริการข้ามแดนอัตโนมัติ';
//	menuitem[7]='ลงทะเบียน';
	
	menulink[0]='/index_th.htm';	
	menulink[1]='/real/index_th.htm';
	menulink[2]='/play/index_th.htm';
	menulink[3]='/say/index_th.htm';
//	menulink[4]='/Hutch_shop_th.htm';
//	menulink[5]='/Hutch_care_th.htm';
//	menulink[6]='/hutch_ir_th.htm';
//	menulink[7]='/register_prospect_th.jsp';

	left_menu_main_display(menuitem,menulink,'th');
}
//-------------------- [ End ] Function for left_menu_main_thai [11 / 11 / 46] -----------------------

//-------------------- [Start] Function for left_menu_main_eng [11 / 11 / 46] -----------------------
function left_menu_main_eng(){
var menuitem = new Array();
	var menulink = new Array();
	
	menuitem[0]='Home Page';
	menuitem[1]='HutchReal';
	menuitem[2]='HutchPlay'
	menuitem[3]='HutchSay';
//	menuitem[4]='Store Locator';
//	menuitem[5]='Care';
//	menuitem[6]='International Roaming';
//	menuitem[7]='Register';
	
	menulink[0]='/index_en.htm';
	menulink[1]='/real/index_en.htm';
	menulink[2]='/play/index_en.htm';
	menulink[3]='/say/index_en.htm';
//	menulink[4]='/Hutch_shop_en.htm';
//	menulink[5]='/Hutch_care_en.htm';
//	menulink[6]='/hutch_ir_en.htm';
//	menulink[7]='/register_prospect_en.jsp';

	left_menu_main_display(menuitem,menulink,'en');	
}
//-------------------- [ End ] Function for left_menu_main_eng [11 / 11 / 46] -----------------------

function left_menu_main_display(menuitem,menulink,lang){
	document.write('<table width="177" border="0" cellspacing="0" cellpadding="0">');

	// <tr> flash logohotch </tr>
	document.write('  <tr>');
	document.write('	<td width="177" height="115" valign="top">');
	document.write('    	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="177" height="115" hspace="5">');
    document.write('      		<param name="movie" value="/swf/logohutch.swf">');
    document.write('      		<param name="quality" value="high">');
    document.write('      		<embed src="/swf/logohutch.swf" width="177" height="115" hspace="5" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
  	document.write('  		</object>');
	document.write('	</td>');
	document.write('  </tr>');

	// <tr> gap </tr>
	document.write('  <tr>');
	document.write('	<td width="177" height="15" valign="top">&nbsp;</td>');
	document.write('  </tr>');

	// <tr> table of left menu </tr>
	if (menuitem.length > 0)
	{

		document.write('  <tr>');
		document.write('	<td width="177" valign="top" align="center">');
	
		document.write('		<table width="160" border="0" cellspacing="0" cellpadding="0">');
		document.write('		  <tr>');
		document.write('			<td width="160" height="10" valign="middle" align="right"><img src="/img/leftmenubar_01.gif" width="160" height="1"></td>');
		document.write('		  </tr>');
			
			for( var i=0; i<menuitem.length; i++ )
			{
				if (i == 0)
				{
					document.write('  <tr class="menurow" onMouseOver="this.style.backgroundColor=\'#FECE00\'" onMouseOut="this.style.backgroundColor=\'#FFFFFF\'" onClick="window.location.href=\'' + menulink[i] + '\'" >');
					document.write('    <td width="160" valign="middle" class="menurow" bgcolor="#CCCCCC">' + menuitem[i] + '</td>');
					document.write('  </tr>');
				}
				else if ((i == 1) || (i == 2) || (i == 3))
				{
					//document.write('  <tr class="menurow" onMouseOver="this.style.backgroundColor=\'#FECE00\'" onMouseOut="this.style.backgroundColor=\'#FFFFFF\'" onClick="window.open(\'' + menulink[i] + '\', \'NewWin\', \'width=800, height=600,left=0,top=0,scrollbars=3,resizable=3,menubar=3,toolbar=3,status=3\')" >');
					document.write('  <tr class="menurow" onMouseOver="this.style.backgroundColor=\'#FECE00\'" onMouseOut="this.style.backgroundColor=\'#FFFFFF\'" onClick="openNewWindow(\'' + menulink[i] + '\');" >');
					document.write('    <td width="160" valign="middle" class="menurow"><table width="160"><tr><td width="20" align="right"><img src="/img/bullet_grey.gif"></td><td width="140" align="right" class="menurow">' + menuitem[i] + '</td></tr></table></td>');
					document.write('  </tr>');
				}
				else
				{
					document.write('  <tr class="menurow" onMouseOver="this.style.backgroundColor=\'#FECE00\'" onMouseOut="this.style.backgroundColor=\'#FFFFFF\'" onClick="window.location.href=\'' + menulink[i] + '\'" >');
					document.write('    <td width="160" valign="middle" class="menurow">' + menuitem[i] + '</td>');
					document.write('  </tr>');
				}
				document.write('  <tr>');
				document.write('    <td width="160" height="10" valign="middle" align="right"><img src="/img/leftmenubar_01.gif" width="160" height="1"></td>');
				document.write('  </tr>');
			}		

		document.write('		</table>');
		
		document.write('	</td>');
		document.write('  </tr>');
	
	}

//	document.write('	  <tr>');
//	document.write('		<td valign="top">&nbsp;</td>');
//	document.write('	  </tr>');
	
/*	if (lang == 'th') {
		document.write('	  <tr>');
		document.write('		<td valign="top"><a href="#" onClick="window.open(\'/networkcoverage/website/p_network_coverage_th.htm\', \'NewWin\', \'width=630, height=600,left=0,top=0,scrollbars=1,resizable=0\')"><img src="/images/network_coverage_th.jpg" width="177" height="14" border="0"></a></td>');
		document.write('	  </tr>');
	} else {
		document.write('	  <tr>');
		document.write('		<td valign="top"><a href="#" onClick="window.open(\'/networkcoverage/website/p_network_coverage_en.htm\', \'NewWin\', \'width=630, height=600,left=0,top=0,scrollbars=1,resizable=0\')"><img src="/images/network_coverage_en.jpg" width="177" height="14" border="0"></a></td>');
		document.write('	  </tr>');
	}
*/
/*	document.write('	  <tr>');
	document.write('		<td valign="top">&nbsp;</td>');
	document.write('	  </tr>');
	document.write('	  <tr>');
	document.write('		<td valign="top">');
	document.write('			<table width="100%" border="0" cellpadding="0" cellspacing="0">');
	document.write('				<tr>');
	document.write('					<td width="8%"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('					<td background="/images/dot.jpg" width="3" height="1"><img src="/images/spacer.gif" width="1" height="1" border="0"></td>');
	document.write('				</tr>');
	document.write('			</table>');
	document.write('		</td>');
	document.write('	  </tr>');
*/
	// <tr> gap </tr>
	document.write('  <tr>');
	document.write('	<td width="177" height="25" valign="top">&nbsp;</td>');
	document.write('  </tr>');
	
	// <tr> prepare for banner </tr>
	if (lang == 'th') {
		document.write('  <tr>');
		document.write('	<td width="177" height="275" valign="top" align="center">');
		document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="177" height="275">');
		document.write('  			<param name="movie" value="/swf/new_myhutch.swf">');
		document.write('  			<param name="quality" value="high">');
		document.write('  			<embed src="/swf/new_myhutch.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="177" height="275"></embed>');
		document.write('		</object>');
		document.write('	</td>');
		document.write('  </tr>');
	} else {
		document.write('  <tr>');
		document.write('	<td width="177" height="275" valign="top" align="center">');
		document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="177" height="275">');
		document.write('  			<param name="movie" value="/swf/new_myhutch_en.swf">');
		document.write('  			<param name="quality" value="high">');
		document.write('  			<embed src="/swf/new_myhutch_en.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="177" height="275"></embed>');
		document.write('		</object>');
		document.write('	</td>');
		document.write('  </tr>');
	}

/*
	document.write('  <tr>');
	document.write('	<td width="177" height="107" valign="top" align="right">');
	document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="177" height="107">');
 	document.write('  			<param name="movie" value="/swf/banner_myhutch_th.swf">');
 	document.write('  			<param name="quality" value="high">');
 	document.write('  			<embed src="/swf/banner_myhutch_th.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="177" height="107"></embed>');
	document.write('		</object>');
	document.write('	</td>');
	document.write('  </tr>');

	document.write('  <tr>');
	document.write('	<td width="177" height="107" valign="top" align="right">');
	document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="177" height="107">');
 	document.write('  			<param name="movie" value="/swf/banner_myhutch_msites_th.swf">');
 	document.write('  			<param name="quality" value="high">');
 	document.write('  			<embed src="/swf/banner_myhutch_msites_th.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="177" height="107"></embed>');
	document.write('		</object>');
	document.write('	</td>');
	document.write('  </tr>');

	document.write('  <tr>');
	document.write('	<td width="177" height="224" valign="top" align="center">');	
	document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="172" height="230">');
 	document.write('  			<param name="movie" value="/swf/myhutch1.swf">');
 	document.write('  			<param name="quality" value="high">');
 	document.write('  			<embed src="/swf/myhutch1.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="172" height="230"></embed>');
	document.write('		</object>');
	document.write('	</td>');
	document.write('  </tr>');
*/
	document.write('</table>');
}

function openNewWindow(link) {
   window.location.href = link;
   window.location.target = '_blank';
}