
var allLoaded = false ;



var entry = new Array( ) ;

function lmInit( )
{
	if ( versionCheck( ) )
	{
		var anchorObj = getAnchorObj('black') ;
		SubMenu.DELAY = 0.2 ; //ロールアウトｅ"・・ム・梳・膜條・i秒）
		SubMenu.timer = null ;

		// new DropDownMenu( レイヤー鮪* X告展, Y告展, 'イメージ鮪% ) ;
		entry[ 0  ] = new SubMenu( "layermenu01", anchorObj.x + 1, anchorObj.y, 'lack' ) ;
		entry[ 1  ] = new SubMenu( "layermenu02", anchorObj.x + 1, anchorObj.y, 'lack' ) ;
		entry[ 2  ] = new SubMenu( "layermenu03", anchorObj.x + 1, anchorObj.y, 'lack' ) ;
		entry[ 3  ] = new SubMenu( "layermenu04", anchorObj.x + 1, anchorObj.y, 'lack' ) ;
		entry[ 4  ] = new SubMenu( "layermenu05", anchorObj.x + 1, anchorObj.y, 'lack' ) ;
		allLoaded = true ;

		for ( var i=0; i<entry.length; i++ )
		{
			entry[ i ].id.onmouseover = new Function("entry[" +i+ "].setMouseOver( true  )") ;
			entry[ i ].id.onmouseout  = new Function("entry[" +i+ "].setMouseOver( false )") ;

			// メニューｖPollOut桙磨pスり鵜沿"・逐о・
			entry[ i ].setImgSrc( entry[ i ].getOffImg( ) ) ;
		}

		setInterval( 'process( )', 40 ) ;
	}
}

// -----------------------------------------------------------------

function versionCheck( )
{
	var flag = ( ( NN4 && getBrowserVersion( ).substr( 0, 3 ).toString( ) != '4.0' ) || NN6 || IE4 || IE5 ) ? true : false ;

	return flag ;
}

// -----------------------------------------------------------------

function process( )
{
	var mode      = null ;
	var makeTimer = false ;

	for ( var i in entry )
	{
		mode = entry[ i ].getMode( ) ;

		if ( mode == 'show' )
		{
			if ( !makeTimer )
			{
				makeTimer     = !makeTimer ;
				SubMenu.timer = getTimer( ) ;
			}

			entry[ i ].motion( ) ;
		}
	}
}

function getTimer( )
{
	var timer = new Date( ) ;

	return timer.getTime( ) ;
}

// -----------------------------------------------------------------

function Position( x, y )
{
	this.x = ( !x ) ? 0 : x ;
	this.y = ( !y ) ? 0 : y ;
}

function SubMenu( layerName, posiX, posiY, imgName )
{
	this.name    = layerName ;
	this.id      = refLayer( layerName ) ;
	this.imgName = imgName ;
	this.imgSrc  = null ;

	this.position = new Position( posiX, posiY ) ;

	this.mouseOverFlag = false ;
	this.mode = 'hide' ;

	shiftLayerTo( this.id, this.getX( ), this.getY( ) ) ;
}

SubMenu.prototype.motion = function( )
{
	var myTimer = this.getTimer( ) ;

	if ( !this.isMouseOver( ) && ( myTimer < SubMenu.timer ) )
	{
		this.hide( ) ;
	}
}

SubMenu.prototype.hideHandler = function( )
{
	this.setMouseOver( false ) ;

	// 條嚥・・Cベントり仲3・
	this.setTimer( SubMenu.timer + ( 1000 * SubMenu.DELAY ) ) ;
}

SubMenu.prototype.show = function( )
{
	this.setMouseOver( true ) ;
	this.setMode( 'show' ) ;

	clearAll( this ) ;

	showLayer( this.id ) ;
}

SubMenu.prototype.hide = function( )
{
	this.setMode( 'hide' ) ;
	this.swapImgRestore( ) ;

	hideLayer( this.id ) ;
}

SubMenu.prototype.getName = function( )
{
	return this.name ;
}

SubMenu.prototype.setMode = function( mode )
{
	this.mode = mode ;
}

SubMenu.prototype.getMode = function( )
{
	return this.mode ;
}

SubMenu.prototype.getX = function( )
{
	return this.position.x ;
}

SubMenu.prototype.getY = function( )
{
	return this.position.y ;
}

SubMenu.prototype.setImgSrc = function( imgOrder )
{
	this.imgSrc = imgOrder ;
}

SubMenu.prototype.getImgSrc = function( )
{
	return this.imgSrc ;
}

SubMenu.prototype.getImgName = function( )
{
	return this.imgName ;
}

SubMenu.prototype.getOffImg = function( )
{
	var imgName = this.getImgName( ) ;
	var imgSrc  = document.images[ imgName ].src ;

	return imgSrc ;
}

SubMenu.prototype.swapImage = function( imgOrder )
{
	var imgName = this.getImgName( ) ;

	document.images[ imgName ].src = imgOrder ;
}

SubMenu.prototype.swapImgRestore = function( )
{
	var imgSrc = this.getImgSrc( ) ;

	this.swapImage( imgSrc ) ;
}

SubMenu.prototype.setTimer = function( value  )
{
	this.timer = value ;
}

SubMenu.prototype.getTimer = function( )
{
	return this.timer ;
}

SubMenu.prototype.isMouseOver = function( )
{
	return this.mouseOverFlag ;
}

SubMenu.prototype.setMouseOver = function( value )
{
	if ( this.mouseOverFlag == value )
	{
		this.prevEvent = value ;

		this.counter = 1 ;
		return ;
	}
	else
	{
		if ( !!this.prevEvent )
		{
			value = this.prevEvent ;
			this.prevEvent = null ;
		}

		this.mouseOverFlag = value ;
	}
}

// -----------------------------------------------------------------

function funcBuffer( )
{
	var jsCode = funcBuffer.arguments ;

	if ( allLoaded && versionCheck( ) )
	{
		for ( var i=0; i<jsCode.length; i++ )
		{
			eval( jsCode[ i ] ) ;
		}
	}
}

// -----------------------------------------------------------------

function clearAll( obj )
{
	if ( allLoaded && versionCheck( ) )
	{
		for ( var i in entry )
		{
			if ( entry[ i ] != obj )
			{
				entry[ i ].hide( ) ;
			}
		}
	}
}

// -----------------------------------------------------------------

function resizeHandler( )
{
	if ( allLoaded && versionCheck( ) )
	{
		location.reload( ) ;
		return false ;
	}
}

function setNSEventCapture( )
{
	document.captureEvents( Event.MOUSEUP ) ;

	if ( allLoaded && versionCheck( ) )
	{
		document.captureEvents( Event.RESIZE ) ;
	}
}

if( NN4 || NN6 )
{
	setNSEventCapture( ) ;
}

function createLayer( )
{
	document.open( ) ;
	document.write( '<div id="layermenu01" class="layerMenu"><table border="0" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_012\', \'\', \'/english/process/images/meru_02_01a.gif\',1)" onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_01o.gif\' width="110" height="22" name="meru_02_012" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_022\', \'\', \'/english/process/images/meru_02_02a.gif\',1)" onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_02.gif\' width="108" height="22" name="meru_02_022" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_032\', \'\', \'/english/process/images/meru_02_03a.gif\',1)" onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_03.gif\' width="108" height="22" name="meru_02_032" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_042\', \'\', \'/english/process/images/meru_02_04a.gif\',1)" onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_04.gif\' width="108" height="22" name="meru_02_042" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_052\', \'\', \'/english/process/images/meru_02_05a.gif\',1)" onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_05.gif\' width="109" height="22" name="meru_02_052" border="0"></a></td></tr></table><img src=\'/english/process/images/0200_zu.gif\' width="555" height="294" usemap="#Map" border="0" name="mm_i01"> <map name="Map"> <area shape="rect" coords="173,351,316,399"href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="120,102" href="#"><area shape="poly" coords="120,114,121,122,128,131,144,139,157,142,178,143,189,143,207,136,215,130,224,119,222,107,216,98,206,92,196,88,183,85,169,86,151,87,133,95,124,102,121,109" href="javascript:;"  onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="191,58,132,59,116,63,93,67,69,76,57,84,50,91,37,101,27,116,22,129,21,144,25,161,36,176,47,186,67,201,89,209,119,216,145,220,174,221,210,218,237,213,256,206,280,197,292,187,308,172,317,155,317,137,314,119,302,102,286,87,265,77,239,67,218,61,191,58,195,60,203,62,225,66,241,72,264,83,277,94,284,108,287,124,286,139,277,152,270,161,250,174,223,182,196,189,176,190,142,187,113,180,91,173,78,165,69,157,59,147,54,133,55,118,64,99,82,83,99,73,119,68,145,62,191,61" href="javascript:;"  onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="87,91,95,93,102,95,109,97,108,102,101,110,101,116,102,127,107,133,118,139,142,148,159,150,157,189,127,185,98,174,82,166,64,153,57,144,54,120,64,102,79,88" href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="92,81,119,90,139,85,160,81,185,79,207,84,223,89,258,81,244,73,228,67,224,67,204,63,190,62,179,61,161,62,149,61,135,65,118,69,106,70,96,73" href="javascript:;"  onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="265,87,272,89,282,104,286,118,286,135,276,154,256,171,230,180,206,186,184,189,183,151,197,148,225,139,238,125,240,112,234,101,231,95" href="javascript:;"  onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"></map></div>' ) ;
	
	document.write( '<div id="layermenu02" class="layerMenu"><table border="0" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_013\', \'\', \'/english/process/images/meru_02_01a.gif\',1)" onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_01.gif\' width="110" height="22" name="meru_02_013" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_023\', \'\', \'/english/process/images/meru_02_02a.gif\',1)" onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_02o.gif\' width="108" height="22" name="meru_02_023" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_033\', \'\', \'/english/process/images/meru_02_03a.gif\',1)" onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_03.gif\' width="108" height="22" name="meru_02_033" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_043\', \'\', \'/english/process/images/meru_02_04a.gif\',1)" onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_04.gif\' width="108" height="22" name="meru_02_043" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_053\', \'\', \'/english/process/images/meru_02_05a.gif\',1)" onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_05.gif\' width="109" height="22" name="meru_02_053" border="0"></a></td></tr></table><img src=\'/english/process/images/0201_zu.gif\' width="555" height="294" usemap="#Map" border="0" name="mm_i01"> <map name="Map"> <area shape="rect" coords="173,351,316,399"href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="120,102" href="#"><area shape="poly" coords="120,114,121,122,128,131,144,139,157,142,178,143,189,143,207,136,215,130,224,119,222,107,216,98,206,92,196,88,183,85,169,86,151,87,133,95,124,102,121,109" href="javascript:;"  onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="191,58,132,59,116,63,93,67,69,76,57,84,50,91,37,101,27,116,22,129,21,144,25,161,36,176,47,186,67,201,89,209,119,216,145,220,174,221,210,218,237,213,256,206,280,197,292,187,308,172,317,155,317,137,314,119,302,102,286,87,265,77,239,67,218,61,191,58,195,60,203,62,225,66,241,72,264,83,277,94,284,108,287,124,286,139,277,152,270,161,250,174,223,182,196,189,176,190,142,187,113,180,91,173,78,165,69,157,59,147,54,133,55,118,64,99,82,83,99,73,119,68,145,62,191,61" href="javascript:;"  onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="87,91,95,93,102,95,109,97,108,102,101,110,101,116,102,127,107,133,118,139,142,148,159,150,157,189,127,185,98,174,82,166,64,153,57,144,54,120,64,102,79,88" href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="92,81,119,90,139,85,160,81,185,79,207,84,223,89,258,81,244,73,228,67,224,67,204,63,190,62,179,61,161,62,149,61,135,65,118,69,106,70,96,73" href="javascript:;"  onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="265,87,272,89,282,104,286,118,286,135,276,154,256,171,230,180,206,186,184,189,183,151,197,148,225,139,238,125,240,112,234,101,231,95" href="javascript:;"  onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"></map></div>' ) ;
	
	document.write( '<div id="layermenu03" class="layerMenu"><table border="0" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_014\', \'\', \'/english/process/images/meru_02_01a.gif\',1)" onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_01.gif\' width="110" height="22" name="meru_02_014" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_024\', \'\', \'/english/process/images/meru_02_02a.gif\',1)" onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_02.gif\' width="108" height="22" name="meru_02_024" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_034\', \'\', \'/english/process/images/meru_02_03a.gif\',1)" onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_03o.gif\' width="108" height="22" name="meru_02_034" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_044\', \'\', \'/english/process/images/meru_02_04a.gif\',1)" onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_04.gif\' width="108" height="22" name="meru_02_044" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_054\', \'\', \'/english/process/images/meru_02_05a.gif\',1)" onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_05.gif\' width="109" height="22" name="meru_02_054" border="0"></a></td></tr></table><img src=\'/english/process/images/0202_zu.gif\' width="555" height="294" usemap="#Map" border="0" name="mm_i01"> <map name="Map"> <area shape="rect" coords="173,351,316,399"href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="120,102" href="#"><area shape="poly" coords="120,114,121,122,128,131,144,139,157,142,178,143,189,143,207,136,215,130,224,119,222,107,216,98,206,92,196,88,183,85,169,86,151,87,133,95,124,102,121,109" href="javascript:;"  onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="191,58,132,59,116,63,93,67,69,76,57,84,50,91,37,101,27,116,22,129,21,144,25,161,36,176,47,186,67,201,89,209,119,216,145,220,174,221,210,218,237,213,256,206,280,197,292,187,308,172,317,155,317,137,314,119,302,102,286,87,265,77,239,67,218,61,191,58,195,60,203,62,225,66,241,72,264,83,277,94,284,108,287,124,286,139,277,152,270,161,250,174,223,182,196,189,176,190,142,187,113,180,91,173,78,165,69,157,59,147,54,133,55,118,64,99,82,83,99,73,119,68,145,62,191,61" href="javascript:;"  onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="87,91,95,93,102,95,109,97,108,102,101,110,101,116,102,127,107,133,118,139,142,148,159,150,157,189,127,185,98,174,82,166,64,153,57,144,54,120,64,102,79,88" href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="92,81,119,90,139,85,160,81,185,79,207,84,223,89,258,81,244,73,228,67,224,67,204,63,190,62,179,61,161,62,149,61,135,65,118,69,106,70,96,73" href="javascript:;"  onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="265,87,272,89,282,104,286,118,286,135,276,154,256,171,230,180,206,186,184,189,183,151,197,148,225,139,238,125,240,112,234,101,231,95" href="javascript:;"  onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"></map></div>' ) ;
	
	document.write( '<div id="layermenu04" class="layerMenu"><table border="0" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_015\', \'\', \'/english/process/images/meru_02_01a.gif\',1)" onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_01.gif\' width="110" height="22" name="meru_02_015" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_025\', \'\', \'/english/process/images/meru_02_02a.gif\',1)" onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_02.gif\' width="108" height="22" name="meru_02_025" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_035\', \'\', \'/english/process/images/meru_02_03a.gif\',1)" onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_03.gif\' width="108" height="22" name="meru_02_035" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_045\', \'\', \'/english/process/images/meru_02_04a.gif\',1)" onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_04o.gif\' width="108" height="22" name="meru_02_045" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_055\', \'\', \'/english/process/images/meru_02_05a.gif\',1)" onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_05.gif\' width="109" height="22" name="meru_02_055" border="0"></a></td></tr></table><img src=\'/english/process/images/0203_zu.gif\' width="555" height="294" usemap="#Map4" border="0" name="mm_i01"> <map name="Map4"><area shape="rect" coords="173,351,316,399" href="javascript:;" onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="120,102" href="#"><area shape="poly" coords="120,114,121,122,128,131,144,139,157,142,178,143,189,143,207,136,215,130,224,119,222,107,216,98,206,92,196,88,183,85,169,86,151,87,133,95,124,102,121,109" href="javascript:;" onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="191,58,132,59,116,63,93,67,69,76,57,84,50,91,37,101,27,116,22,129,21,144,25,161,36,176,47,186,67,201,89,209,119,216,145,220,174,221,210,218,237,213,256,206,280,197,292,187,308,172,317,155,317,137,314,119,302,102,286,87,265,77,239,67,218,61,191,58,195,60,203,62,225,66,241,72,264,83,277,94,284,108,287,124,286,139,277,152,270,161,250,174,223,182,196,189,176,190,142,187,113,180,91,173,78,165,69,157,59,147,54,133,55,118,64,99,82,83,99,73,119,68,145,62,191,61" href="javascript:;"  onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="87,91,95,93,102,95,109,97,108,102,101,110,101,116,102,127,107,133,118,139,142,148,159,150,157,189,127,185,98,174,82,166,64,153,57,144,54,120,64,102,79,88" href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="92,81,119,90,139,85,160,81,185,79,207,84,223,89,258,81,244,73,228,67,224,67,204,63,190,62,179,61,161,62,149,61,135,65,118,69,106,70,96,73" href="javascript:;"  onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="265,87,272,89,282,104,286,118,286,135,276,154,256,171,230,180,206,186,184,189,183,151,197,148,225,139,238,125,240,112,234,101,231,95" href="javascript:;"  onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"><area shape="rect" coords="349,246,461,259" href="/english/service_info/platform.html" alt="BPO Center"><area shape="rect" coords="349,232,461,245" href="/english/service_info/platform.html" alt="Data Entry Center"><area shape="rect" coords="349,218,461,231" href="/english/service_info/platform.html" alt="Contact Center"></map></div>' ) ;
	
	
document.write( '<div id="layermenu05" class="layerMenu"><table border="0" cellpadding="0" cellspacing="0"><tr><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_016\', \'\', \'/english/process/images/meru_02_01a.gif\',1)" onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_01.gif\' width="110" height="22" name="meru_02_016" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_026\', \'\', \'/english/process/images/meru_02_02a.gif\',1)" onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_02.gif\' width="108" height="22" name="meru_02_026" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_036\', \'\', \'/english/process/images/meru_02_03a.gif\',1)" onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_03.gif\' width="108" height="22" name="meru_02_036" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_046\', \'\', \'/english/process/images/meru_02_04a.gif\',1)" onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_04.gif\' width="108" height="22" name="meru_02_046" border="0"></a></td><td><img src=\'/english/process/images/meru_02_line.gif\' width="3" height="22"></td><td><a href="javascript:;" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'meru_02_056\', \'\', \'/english/process/images/meru_02_05a.gif\',1)" onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><img src=\'/english/process/images/meru_02_05o.gif\' width="109" height="22" name="meru_02_056" border="0"></a></td></tr></table><img src=\'/english/process/images/0204_zu.gif\' width="555" height="294" usemap="#Map" border="0" name="mm_i01"> <map name="Map"> <area shape="rect" coords="173,351,316,399"href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="120,102" href="#"><area shape="poly" coords="120,114,121,122,128,131,144,139,157,142,178,143,189,143,207,136,215,130,224,119,222,107,216,98,206,92,196,88,183,85,169,86,151,87,133,95,124,102,121,109" href="javascript:;"  onClick="funcBuffer( \'entry[ 0 ].show( )\', \'entry[ 0 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="191,58,132,59,116,63,93,67,69,76,57,84,50,91,37,101,27,116,22,129,21,144,25,161,36,176,47,186,67,201,89,209,119,216,145,220,174,221,210,218,237,213,256,206,280,197,292,187,308,172,317,155,317,137,314,119,302,102,286,87,265,77,239,67,218,61,191,58,195,60,203,62,225,66,241,72,264,83,277,94,284,108,287,124,286,139,277,152,270,161,250,174,223,182,196,189,176,190,142,187,113,180,91,173,78,165,69,157,59,147,54,133,55,118,64,99,82,83,99,73,119,68,145,62,191,61" href="javascript:;"  onClick="funcBuffer( \'entry[ 1 ].show( )\', \'entry[ 1 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="87,91,95,93,102,95,109,97,108,102,101,110,101,116,102,127,107,133,118,139,142,148,159,150,157,189,127,185,98,174,82,166,64,153,57,144,54,120,64,102,79,88" href="javascript:;"  onClick="funcBuffer( \'entry[ 4 ].show( )\', \'entry[ 4 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="92,81,119,90,139,85,160,81,185,79,207,84,223,89,258,81,244,73,228,67,224,67,204,63,190,62,179,61,161,62,149,61,135,65,118,69,106,70,96,73" href="javascript:;"  onClick="funcBuffer( \'entry[ 2 ].show( )\', \'entry[ 2 ]\' ) ; return true" onFocus="this.blur( )"><area shape="poly" coords="265,87,272,89,282,104,286,118,286,135,276,154,256,171,230,180,206,186,184,189,183,151,197,148,225,139,238,125,240,112,234,101,231,95" href="javascript:;"  onClick="funcBuffer( \'entry[ 3 ].show( )\', \'entry[ 3 ]\' ) ; return true" onFocus="this.blur( )"></map></div>' ) ;
	

	document.close( ) ;
}

//document.onmouseup = clearAll ;

window.onresize = resizeHandler ;

