//internationalization script

//gloable menu object with URL key
var G_menuByURL = new Array();
//All website host name
var G_HOST_CN = "http://www.silvaco.com.cn";
var G_HOST_TW = "http://www.silvaco.com.cn";
var G_HOST_US = "http://www.silvaco.com";
var G_HOST_JP = "http://www.silvaco.co.jp";
var G_HOST_KR = "http://www.silvaco.co.kr";

//overwrite Array put function
Array.prototype.put = function(key, value)
{
    try {
        key = "_" + key.toString();
        if (this[key] == null) {
            this[key] = value;
        }
		else
			this[key] = value;
    } catch(e) { return false; }
    return true;
}
//overwrite Array get function
Array.prototype.get = function(key)
{
    var value = null;
    try {
        key = "_" + key.toString();
        if (this[key]) value = this[key];
    } catch(e) {}
    return value;
}


//set coordinated URLs with current URL key
//urlKey is the URL in current  Website
//if we have more hosts in future, just add parameters like "host5,mUrl5 ..." 
function setURLs(urlKey, host1, mUrl1, host2, mUrl2, host3, mUrl3, host4, mUrl4)
{
	var menuObj = G_menuByURL.get(urlKey);
	if(menuObj==null)
	{
		var menuObj = new Array();
		menuObj.put(host1,mUrl1);
		menuObj.put(host2,mUrl2);
		menuObj.put(host3,mUrl3);
		menuObj.put(host4,mUrl4);
		G_menuByURL.put(urlKey,menuObj);
	}
	else
	{
		menuObj.put(host1,mUrl1);
		menuObj.put(host2,mUrl2);
		menuObj.put(host3,mUrl3);
		menuObj.put(host4,mUrl4);
	}
}



//get coordinated URL by host name
//if not found, return host
function getOtherURL(host,curUrl){
	var url =getMenuAttByURL(curUrl,host);
	if(url==null)
		return host;
	else
		return host+url;
}




//get property value of G_menuByURL by attType
function getMenuAttByURL(mURL,attType)
{
	var menuObj = G_menuByURL.get(mURL);
	if(menuObj==null)
		return null;
	else
		return menuObj.get(attType);
	
}


//all we have to maintain is these below:
//we can generate them by excel formula 
setURLs('/products/index.html',G_HOST_CN,'/products/index.html',G_HOST_US,'/products/index.html',G_HOST_JP,'/products/index.html');
setURLs('/products/process_simulation/athena.html',G_HOST_CN,'/products/tcad/Process_Simulation/athena_overview.html',G_HOST_US,'/products/process_simulation/athena.html',G_HOST_JP,'/products/tcad/Process_Simulation/athena_overview.html');
setURLs('/products/vwf/athena/victory/victory_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/victory.html',G_HOST_US,'/products/vwf/athena/victory/victory_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/victory.html');
setURLs('/products/vwf/athena/victorycell/victoryCell_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/victorycell.html',G_HOST_US,'/products/vwf/athena/victorycell/victoryCell_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/victory_cell.html');
setURLs('/products/vwf/athena/ss4/ss4_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/ssuprem4.html',G_HOST_US,'/products/vwf/athena/ss4/ss4_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/ssuprem4.html');
setURLs('/products/vwf/athena/mcimplant/mcimplant_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/MC_Implant.html',G_HOST_US,'/products/vwf/athena/mcimplant/mcimplant_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/MC_Implant.html');
setURLs('/products/vwf/athena/elite/elite_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/Elite.html',G_HOST_US,'/products/vwf/athena/elite/elite_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/Elite.html');
setURLs('/products/vwf/athena/mcdeposit/mcdeposit_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/MC_Deposit_Etch.html',G_HOST_US,'/products/vwf/athena/mcdeposit/mcdeposit_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/MC_Deposit_Etch.html');
setURLs('/products/vwf/athena/optolith/optolith_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/Optolith.html',G_HOST_US,'/products/vwf/athena/optolith/optolith_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/Optolith.html');
setURLs('/products/vwf/athena/athena1D/athena1D_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/athena1d.html',G_HOST_US,'/products/vwf/athena/athena1D/athena1D_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/athena1d.html');
setURLs('/products/vwf/athena/ss3/ss3_br.html',G_HOST_CN,'/products/tcad/Process_Simulation/ssprem3.html',G_HOST_US,'/products/vwf/athena/ss3/ss3_br.html',G_HOST_JP,'/products/tcad/Process_Simulation/ssprem3.html');
setURLs('/products/device_simulation/atlas.html',G_HOST_CN,'/products/tcad/Device_Simulation/atlas_overview.html',G_HOST_US,'/products/device_simulation/atlas.html',G_HOST_JP,'/products/tcad/Device_Simulation/atlas_overview.html');
setURLs('/products/vwf/atlas/victory/victory_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/victory_device.html',G_HOST_US,'/products/vwf/atlas/victory/victory_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/victory_device.html');
setURLs('/products/vwf/atlas/device3d/device3d_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Device3D.html',G_HOST_US,'/products/vwf/atlas/device3d/device3d_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Device3D.html');
setURLs('/products/vwf/atlas/3D/giga3D/giga3D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Giga3D.html',G_HOST_US,'/products/vwf/atlas/3D/giga3D/giga3D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Giga3D.html');
setURLs('/products/vwf/atlas/3D/luminous3D/luminous3D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Luminous3D.html',G_HOST_US,'/products/vwf/atlas/3D/luminous3D/luminous3D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Luminous3D.html');
setURLs('/products/vwf/atlas/3D/quantum3D/quantum3D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Quantum3D.html',G_HOST_US,'/products/vwf/atlas/3D/quantum3D/quantum3D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Quantum3D.html');
setURLs('/products/vwf/atlas/3D/tft3D/tft3D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/TFT3D.html',G_HOST_US,'/products/vwf/atlas/3D/tft3D/tft3D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/TFT3D.html');
setURLs('/products/vwf/atlas/3D/magnetic3D/magnetic3D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Magnetic3D.html',G_HOST_US,'/products/vwf/atlas/3D/magnetic3D/magnetic3D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Magnetic3D.html');
setURLs('/products/vwf/atlas/thermal3d/thermal3d.html',G_HOST_CN,'/products/tcad/Device_Simulation/Thermal3D.html',G_HOST_US,'/products/vwf/atlas/thermal3d/thermal3d.html',G_HOST_JP,'/products/tcad/Device_Simulation/Thermal3D.html');
setURLs('/products/vwf/atlas/3D/mixedmode3D/mixedmode3d_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/MixedMode3D.html',G_HOST_US,'/products/vwf/atlas/3D/mixedmode3D/mixedmode3d_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/MixedMode3D.html');
setURLs('/products/vwf/atlas/spisces/spisces_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/S-Pisces.html',G_HOST_US,'/products/vwf/atlas/spisces/spisces_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/S-Pisces.html');
setURLs('/products/vwf/atlas/blaze/blaze_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Blaze.html',G_HOST_US,'/products/vwf/atlas/blaze/blaze_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Blaze.html');
setURLs('/products/vwf/atlas/2D/mc_device/mc_device_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/MC_Device.html',G_HOST_US,'/products/vwf/atlas/2D/mc_device/mc_device_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/MC_Device.html');
setURLs('/products/vwf/atlas/giga/giga_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Giga.html',G_HOST_US,'/products/vwf/atlas/giga/giga_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Giga.html');
setURLs('/products/vwf/atlas/mmode/mmode_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/MixedMode.html',G_HOST_US,'/products/vwf/atlas/mmode/mmode_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/MixedMode.html');
setURLs('/products/vwf/atlas/2D/quantum2D/quantum2D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Quantum.html',G_HOST_US,'/products/vwf/atlas/2D/quantum2D/quantum2D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Quantum.html');
setURLs('/products/vwf/atlas/ferro/ferro_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Ferro.html',G_HOST_US,'/products/vwf/atlas/ferro/ferro_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Ferro.html');
setURLs('/products/vwf/atlas/2D/magnetic2D/magnetic2D_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Magnetic.html',G_HOST_US,'/products/vwf/atlas/2D/magnetic2D/magnetic2D_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Magnetic.html');
setURLs('/products/vwf/atlas/2D/tft/tft_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/TFT.html',G_HOST_US,'/products/vwf/atlas/2D/tft/tft_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/TFT.html');
setURLs('/products/vwf/atlas/2D/led/led_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/LED.html',G_HOST_US,'/products/vwf/atlas/2D/led/led_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/LED.html');
setURLs('/products/vwf/atlas/luminous/luminous_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Luminous.html',G_HOST_US,'/products/vwf/atlas/luminous/luminous_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Luminous.html');
setURLs('/products/vwf/atlas/laser/laser_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Laser.html',G_HOST_US,'/products/vwf/atlas/laser/laser_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Laser.html');
setURLs('/products/vwf/atlas/vcsels/vcsels.html',G_HOST_CN,'/products/tcad/Device_Simulation/VCSEL.html',G_HOST_US,'/products/vwf/atlas/vcsels/vcsels.html',G_HOST_JP,'/products/tcad/Device_Simulation/VCSEL.html');
setURLs('/products/vwf/atlas/organicdisplay/organicdisplay_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Organic_Display.html',G_HOST_US,'/products/vwf/atlas/organicdisplay/organicdisplay_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Organic_Display.html');
setURLs('/products/vwf/atlas/organicsolar/organicsolar_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Organic_Solar.html',G_HOST_US,'/products/vwf/atlas/organicsolar/organicsolar_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Organic_Solar.html');
setURLs('/products/vwf/atlas/noise/noise.html',G_HOST_CN,'/products/tcad/Device_Simulation/Noise.html',G_HOST_US,'/products/vwf/atlas/noise/noise.html',G_HOST_JP,'/products/tcad/Device_Simulation/Noise.html');
setURLs('/products/vwf/atlas/mercury/mercury_br.html',G_HOST_CN,'/products/tcad/Device_Simulation/Mercury.html',G_HOST_US,'/products/vwf/atlas/mercury/mercury_br.html',G_HOST_JP,'/products/tcad/Device_Simulation/Mercury.html');
setURLs('/products/vwf/athena/victorystress/victoryStress_br.html',G_HOST_CN,'/products/tcad/Stress_Simulator/victoryStress.html',G_HOST_US,'/products/vwf/athena/victorystress/victoryStress_br.html',G_HOST_JP,'/products/tcad/Stress_Simulation/victory_stress.html');
setURLs('/products/interactive_tools/interactive.html',G_HOST_CN,'/products/tcad/InteractiveTools/Overview.html',G_HOST_US,'/products/interactive_tools/interactive.html',G_HOST_JP,'/products/tcad/InteractiveTools/Overview.html');
setURLs('/products/interactive_tools/deckbuild/deckbuild_br.html',G_HOST_CN,'/products/tcad/InteractiveTools/DeckBuild.html',G_HOST_US,'/products/interactive_tools/deckbuild/deckbuild_br.html',G_HOST_JP,'/products/tcad/InteractiveTools/DeckBuild.html');
setURLs('/products/interactive_tools/maskviews/maskviews_br.html',G_HOST_CN,'/products/tcad/InteractiveTools/MaskViews.html',G_HOST_US,'/products/interactive_tools/maskviews/maskviews_br.html',G_HOST_JP,'/products/tcad/InteractiveTools/MaskViews.html');
setURLs('/products/interactive_tools/devedit/devedit_br.html',G_HOST_CN,'/products/tcad/InteractiveTools/DevEdit.html',G_HOST_US,'/products/interactive_tools/devedit/devedit_br.html',G_HOST_JP,'/products/tcad/InteractiveTools/DevEdit.html');
setURLs('/products/interactive_tools/tonyplot/tonyplot_br.html',G_HOST_CN,'/products/tcad/InteractiveTools/TonyPlot.html',G_HOST_US,'/products/interactive_tools/tonyplot/tonyplot_br.html',G_HOST_JP,'/products/tcad/InteractiveTools/TonyPlot.html');
setURLs('/products/interactive_tools/tonyplot3d/tonyplot3D_br.html',G_HOST_CN,'/products/tcad/InteractiveTools/TonyPlot3.html',G_HOST_US,'/products/interactive_tools/tonyplot3d/tonyplot3D_br.html',G_HOST_JP,'/products/tcad/InteractiveTools/TonyPlot3.html');
setURLs('/products/virtual_wafer/vwf.html',G_HOST_CN,'/products/tcad/vwf.html',G_HOST_US,'/products/virtual_wafer/vwf.html',G_HOST_JP,'/products/tcad/vwf.html');
setURLs('/products/integrity/integrity.html',G_HOST_CN,'/products/ams.html',G_HOST_US,'/products/integrity/integrity.html',G_HOST_JP,'/products/ams.html');
setURLs('/products/design_capture/gateway.html',G_HOST_CN,'/products/ams/gateway.html',G_HOST_US,'/products/design_capture/gateway.html',G_HOST_JP,'/products/ams/gateway.html');
setURLs('/products/design_capture/gateway200/gateway200.html',G_HOST_CN,'/products/ams/gateway200.html',G_HOST_US,'/products/design_capture/gateway200/gateway200.html',G_HOST_JP,'/products/ams/gateway200.html');
setURLs('/products/circuit_simulation/smartspice.html',G_HOST_CN,'/products/ams/smartspice.html',G_HOST_US,'/products/circuit_simulation/smartspice.html',G_HOST_JP,'/products/ams/smartspice.html');
setURLs('/products/circuit_simulation/modellibModels.html',G_HOST_CN,'/products/ams/spicemodels.html',G_HOST_US,'/products/circuit_simulation/modellibModels.html',G_HOST_JP,'/products/ams/spicemodels.html');
setURLs('/products/behavioral_modeling/verilog_A.html',G_HOST_CN,'/products/ams/veriloga_ds.html',G_HOST_US,'/products/behavioral_modeling/verilog_A.html',G_HOST_JP,'/products/ams/veriloga.html');
setURLs('/products/soiModels/ibis_support.html',G_HOST_CN,'/products/soiModels/ibis_support.html',G_HOST_US,'/products/soiModels/ibis_support.html',G_HOST_JP,'/products/soiModels/ibis_support.html');
setURLs('/products/ICDesignTools/highvoltage.html',G_HOST_CN,'/products/ams/ams_hvt.html',G_HOST_US,'/products/ICDesignTools/highvoltage.html',G_HOST_JP,'/products/ams/ams_hvt.html');
setURLs('/products/circuit_simulation/smartspice200/smartspice200.html',G_HOST_CN,'/products/ams/SmartSpice200.html',G_HOST_US,'/products/circuit_simulation/smartspice200/smartspice200.html',G_HOST_JP,'/products/ams/smartspice200.html');
setURLs('/products/circuit_simulation/circuitsim.html',G_HOST_CN,'/products/total.html',G_HOST_US,'/products/circuit_simulation/circuitsim.html',G_HOST_JP,'/products/total.html');
setURLs('/products/RFsimulation/smartSpiceRF.html',G_HOST_CN,'/products/ams/smartspice_rf.html',G_HOST_US,'/products/RFsimulation/smartSpiceRF.html',G_HOST_JP,'/products/ams/smartspice_rf.html');
setURLs('/products/circuit_simulation/harmony.html',G_HOST_CN,'/products/ams/harmony_ams.html',G_HOST_US,'/products/circuit_simulation/harmony.html',G_HOST_JP,'/products/ams/harmony_ams.html');
setURLs('/products/optimization/utmostiv.html',G_HOST_CN,'/products/ams/utmostIV.html',G_HOST_US,'/products/optimization/utmostiv.html',G_HOST_JP,'/products/ams/utmostIV.html');
setURLs('/products/optimization/hisim/hisim_utmost4.html',G_HOST_CN,'/products/ams/hisim_utmostIV.html',G_HOST_US,'/products/optimization/hisim/hisim_utmost4.html',G_HOST_JP,'/products/ams/hisim_utmostIV.html');
setURLs('/products/model_extraction/utmost.html',G_HOST_CN,'/products/ams/utmost.html',G_HOST_US,'/products/model_extraction/utmost.html',G_HOST_JP,'/products/ams/utmost.html');
setURLs('/products/analog/vyper/noiseamp/noiseamp_mos/noiseam_mos_br.html',G_HOST_CN,'/products/ams/noiseam_mos_br.html',G_HOST_US,'/products/analog/vyper/noiseamp/noiseamp_mos/noiseam_mos_br.html',G_HOST_JP,'/products/ams/noiseam_mos_br.html');
setURLs('/products/analog/vyper/noiseamp/noisamp_bipolar/noisebox.html',G_HOST_CN,'/products/ams/noiseam_Bipolar_br.html',G_HOST_US,'/products/analog/vyper/noiseamp/noisamp_bipolar/noisebox.html',G_HOST_JP,'/products/ams/noiseam_Bipolar_br.html');
setURLs('/products/analog/vyper/noiseamp/mos/mos_noisebox.html',G_HOST_CN,'/products/ams/noiseam_mos_noise_br.html',G_HOST_US,'/products/analog/vyper/noiseamp/mos/mos_noisebox.html',G_HOST_JP,'/products/ams/noiseam_mos_noise_br.html');
setURLs('/products/analog/vyper/spayn/spayn_br.html',G_HOST_CN,'/products/ams/spayn_br.html',G_HOST_US,'/products/analog/vyper/spayn/spayn_br.html',G_HOST_JP,'/products/ams/spayn_br.html');
setURLs('/products/ICDesignVerification/celebrity.html',G_HOST_CN,'/products/cad.html',G_HOST_US,'/products/ICDesignVerification/celebrity.html',G_HOST_JP,'/products/cad.html');
setURLs('/products/layout/expert.html',G_HOST_CN,'/products/iccad/expert.html',G_HOST_US,'/products/layout/expert.html',G_HOST_JP,'/products/iccad/expert.html');
setURLs('/products/layout/expert200/expert200.html',G_HOST_CN,'/products/iccad/expert200.html',G_HOST_US,'/products/layout/expert200/expert200.html',G_HOST_JP,'/products/iccad/expert200.html');
setURLs('/products/drc_lvs/guardian.html',G_HOST_CN,'/products/iccad/guardian.html',G_HOST_US,'/products/drc_lvs/guardian.html',G_HOST_JP,'/products/iccad/guardian.html');
setURLs('/products/fullChipPE/hipex.html',G_HOST_CN,'/products/iccad/hipex.html',G_HOST_US,'/products/fullChipPE/hipex.html',G_HOST_JP,'/products/iccad/hipex.html');
setURLs('/products/RLCNetlistReduction/clarity_rlc.html',G_HOST_CN,'/products/iccad/clarity_rlc.html',G_HOST_US,'/products/RLCNetlistReduction/clarity_rlc.html',G_HOST_JP,'/products/iccad/ClarityRLC.html');
setURLs('/products/parasiticExtraction/discovery/discovery.html',G_HOST_CN,'/products/parasitic_ext.html',G_HOST_US,'/products/parasiticExtraction/discovery/discovery.html',G_HOST_JP,'/products/parasitic_ext.html');
setURLs('/products/parasitics_features/parasitics_features.html',G_HOST_CN,'',G_HOST_US,'/products/parasitics_features/parasitics_features.html',G_HOST_JP,'');
setURLs('/products/model_extraction/exact.html',G_HOST_CN,'/products/parasitic/exact.html',G_HOST_US,'/products/model_extraction/exact.html',G_HOST_JP,'/products/parasitic/exact.html');
setURLs('/products/parasiticExtraction/quest/quest.html',G_HOST_CN,'/products/parasitic/quest.html',G_HOST_US,'/products/parasiticExtraction/quest/quest.html',G_HOST_JP,'/products/parasitic/quest.html');
setURLs('/products/lpe/clever.html',G_HOST_CN,'/products/parasitic/clever.html',G_HOST_US,'/products/lpe/clever.html',G_HOST_JP,'/products/parasitic/clever.html');
setURLs('/products/parasiticExtraction/stellar/stellar.html',G_HOST_CN,'/products/parasitic/stellar.html',G_HOST_US,'/products/parasiticExtraction/stellar/stellar.html',G_HOST_JP,'/products/parasitic/stellar.html');
setURLs('/products/synergy/synergy.html',G_HOST_CN,'/products/digitalcad.html',G_HOST_US,'/products/synergy/synergy.html',G_HOST_JP,'/products/digitalcad.html');
setURLs('/products/verilogSimulation/silos.html',G_HOST_CN,'/products/logic/silos.html',G_HOST_US,'/products/verilogSimulation/silos.html',G_HOST_JP,'/products/logic/silos.html');
setURLs('/products/faultSimulation/hyperfault.html',G_HOST_CN,'/products/logic/hyperfault.html',G_HOST_US,'/products/faultSimulation/hyperfault.html',G_HOST_JP,'/products/logic/hyperfault.html');
setURLs('/products/ip_characterization/accucell.html',G_HOST_CN,'/products/logic/accucell.html',G_HOST_US,'/products/ip_characterization/accucell.html',G_HOST_JP,'/products/logic/accucell.html');
setURLs('/products/ip_characterization/accucore.html',G_HOST_CN,'/products/logic/accucore.html',G_HOST_US,'/products/ip_characterization/accucore.html',G_HOST_JP,'/products/logic/accucore.html');
setURLs('/products/catalyst/catalyst.html',G_HOST_CN,'/products/logic/catalystad.html',G_HOST_US,'/products/catalyst/catalyst.html',G_HOST_JP,'/products/logic/catalyst.html');
setURLs('/products/catalystDA/catalystDA.html',G_HOST_CN,'/products/logic/catalystda.html',G_HOST_US,'/products/catalystDA/catalystDA.html',G_HOST_JP,'/products/logic/catalyst_DA.html');
setURLs('/products/spider/spider.html',G_HOST_CN,'/products/logic/spider.html',G_HOST_US,'/products/spider/spider.html',G_HOST_JP,'/products/logic/spider.html');
setURLs('/licensing/licensing.html',G_HOST_CN,'/products/license/licensing.html',G_HOST_US,'/licensing/licensing.html',G_HOST_JP,'/license/licensing.html');
setURLs('/licensing/tcadUnlimited/tcadUnlimited.html',G_HOST_CN,'/products/license/licensing_index.html',G_HOST_US,'/licensing/tcadUnlimited/tcadUnlimited.html',G_HOST_JP,'/license/tcadUnlimited.html');
setURLs('/licensing/worldwide/worldwideLicense.html',G_HOST_CN,'/products/license/worldwideLicense.html',G_HOST_US,'/licensing/worldwide/worldwideLicense.html',G_HOST_JP,'/license/licensing_worldwide/licensing_worldwide_index.html');
setURLs('/licensing/smartSpiceWorldwide/worldwideLicense.html',G_HOST_CN,'/products/license/licensing_worldwide/licensing_worldwide_SS.html',G_HOST_US,'/licensing/smartSpiceWorldwide/worldwideLicense.html',G_HOST_JP,'/license/licensing_worldwide/licensing_worldwide_SS.html');
setURLs('/licensing/expertWorldwide/expert_worldwide_license_br.html',G_HOST_CN,'/products/license/licensing_worldwide/licensing_worldwide_EXPERT.html',G_HOST_US,'/licensing/expertWorldwide/expert_worldwide_license_br.html',G_HOST_JP,'/license/licensing_worldwide/licensing_worldwide_EXPERT.html');
setURLs('/licensing/gatewayWorldwide/gateway_unlimited_br.html',G_HOST_CN,'/products/license/licensing_worldwide/licensing_worldwide_GATEWAY.html',G_HOST_US,'/licensing/gatewayWorldwide/gateway_unlimited_br.html',G_HOST_JP,'/license/licensing_worldwide/licensing_worldwide_Gateway.html');
setURLs('/licensing/guardianWorldwide/guardian_drc_ww_license_br.html',G_HOST_CN,'/products/license/licensing_worldwide/licensing_worldwide_GDN-DRC.html',G_HOST_US,'/licensing/guardianWorldwide/guardian_drc_ww_license_br.html',G_HOST_JP,'/license/licensing_worldwide/licensing_worldwide_GDN-DRC.html');
setURLs('/licensing/hipexWorldwide/hipex_unlimited_br.html',G_HOST_CN,'/products/license/licensing_worldwide/licensing_worldwide_HIPEX.html',G_HOST_US,'/licensing/hipexWorldwide/hipex_unlimited_br.html',G_HOST_JP,'/license/licensing_worldwide/licensing_worldwide_HIPEX.html');
setURLs('/licensing/universal/universal_token.html',G_HOST_CN,'/products/license/licensing_universal.html',G_HOST_US,'/licensing/universal/universal_token.html',G_HOST_JP,'/license/licensing_universal.html');
setURLs('/licensing/tokenCard/token_card_br.html',G_HOST_CN,'/products/license/licensing_tokencard.html',G_HOST_US,'/licensing/tokenCard/token_card_br.html',G_HOST_JP,'/license/token_card.html');
setURLs('/licensing/tcad_omni/tcad_omni.html',G_HOST_CN,'/products/license/licensing_tcad_omni.html',G_HOST_US,'/licensing/tcad_omni/tcad_omni.html',G_HOST_JP,'/license/licensing_TCAD_OMNI.html');
setURLs('/licensing/term/term-based.html',G_HOST_CN,'/products/license/licensing_term_based.html',G_HOST_US,'/licensing/term/term-based.html',G_HOST_JP,'/license/term/index.html');
setURLs('/licensing/perpetual/perpetual.html',G_HOST_CN,'/products/license/licensing_perpetual.html',G_HOST_US,'/licensing/perpetual/perpetual.html',G_HOST_JP,'/license/perpetual/index.html');
setURLs('/licensing/academic/eda_academic_suite.html',G_HOST_CN,'',G_HOST_US,'/licensing/academic/eda_academic_suite.html',G_HOST_JP,'');
setURLs('/support/platforms.html',G_HOST_CN,'/support/os_load.html',G_HOST_US,'/support/platforms.html',G_HOST_JP,'/support/os_load.html');
setURLs('/company/offices/offices.html',G_HOST_CN,'/company/offices.html',G_HOST_US,'/company/offices/offices.html',G_HOST_JP,'/company/offices.html');
setURLs('/company/offices/california.html',G_HOST_CN,'/company/ushead.html',G_HOST_US,'/company/offices/california.html',G_HOST_JP,'/company/ushead.html');
setURLs('/company/directions/directions.html',G_HOST_CN,'/company/ushead.html',G_HOST_US,'/company/directions/directions.html',G_HOST_JP,'/company/directions/directions.html');
setURLs('/company/offices/arizona.html',G_HOST_CN,'/company/us_arizona.html',G_HOST_US,'/company/offices/arizona.html',G_HOST_JP,'/company/us_ariz.html');
setURLs('/company/directions/ar-directions.html',G_HOST_CN,'/company/us_arizona.html',G_HOST_US,'/company/directions/ar-directions.html',G_HOST_JP,'/company/directions/ar-directions.html');
setURLs('/company/offices/texas.html',G_HOST_CN,'/company/us_austin.html',G_HOST_US,'/company/offices/texas.html',G_HOST_JP,'/company/us_austin.html');
setURLs('/company/offices/texas.html',G_HOST_CN,'/company/us_austin.html',G_HOST_US,'/company/directions/au-directions.html',G_HOST_JP,'/company/directions/au-directions.html');
setURLs('/company/offices/massachusetts.html',G_HOST_CN,'/company/us_massa.html',G_HOST_US,'/company/offices/massachusetts.html',G_HOST_JP,'/company/us_massa.html');
setURLs('/company/directions/ma-directions.html',G_HOST_CN,'/company/us_massa.html',G_HOST_US,'/company/directions/ma-directions.html',G_HOST_JP,'/company/directions/ma-directions.html');
setURLs('/company/offices/japan.html',G_HOST_CN,'/company/kyoto.html',G_HOST_US,'/company/offices/japan.html',G_HOST_JP,'/company/yokohama.html');
setURLs('/company/directions/japan_directionsYokohama.html',G_HOST_CN,'/company/kyoto.html',G_HOST_US,'/company/directions/japan_directionsYokohama.html',G_HOST_JP,'/company/directions/japan_directionsYokohama.html');
setURLs('/company/directions/japan_directionsKyoto.html',G_HOST_CN,'/company/kyoto.html',G_HOST_US,'/company/directions/japan_directionsKyoto.html',G_HOST_JP,'/company/directions/japan_directionsKyoto.html');
setURLs('/company/offices/uk.html',G_HOST_CN,'/company/uk.html',G_HOST_US,'/company/offices/uk.html',G_HOST_JP,'/company/uk.html');
setURLs('/company/directions/uk_directions.html',G_HOST_CN,'/company/uk.html',G_HOST_US,'/company/directions/uk_directions.html',G_HOST_JP,'/company/directions/uk_directions.html');
setURLs('/company/offices/korea.html',G_HOST_CN,'/company/korea.html',G_HOST_US,'/company/offices/korea.html',G_HOST_JP,'/company/korea.html');
setURLs('/company/directions/korea_directions.html',G_HOST_CN,'/company/korea.html',G_HOST_US,'/company/directions/korea_directions.html',G_HOST_JP,'/company/directions/korea_directions.html');
setURLs('/company/offices/taiwan.html',G_HOST_CN,'/company/taiwan.html',G_HOST_US,'/company/offices/taiwan.html',G_HOST_JP,'/company/taiwan.html');
setURLs('/company/directions/taiwan_directions.html',G_HOST_CN,'/company/taiwan.html',G_HOST_US,'/company/directions/taiwan_directions.html',G_HOST_JP,'/company/directions/taiwan_directions.html');
setURLs('/company/offices/singapore.html',G_HOST_CN,'/company/singapore.html',G_HOST_US,'/company/offices/singapore.html',G_HOST_JP,'/company/singapore.html');
setURLs('/company/directions/singapore_directions.html',G_HOST_CN,'/company/singapore.html',G_HOST_US,'/company/directions/singapore_directions.html',G_HOST_JP,'/company/directions/singapore_directions.html');
setURLs('/company/offices/distributorsChina01.html',G_HOST_CN,'/company/distributorsChina01.html',G_HOST_US,'/company/offices/distributorsChina01.html',G_HOST_JP,'/company/distributorsChina01.html');
setURLs('/company/offices/distributorsChina02.html',G_HOST_CN,'/company/distributorsChina02.html',G_HOST_US,'/company/offices/distributorsChina02.html',G_HOST_JP,'/company/distributorsChina02.html');
setURLs('/company/offices/distributorsChina03.html',G_HOST_CN,'/company/distributorsChina03.html',G_HOST_US,'/company/offices/distributorsChina03.html',G_HOST_JP,'/company/distributorsChina03.html');
setURLs('/company/offices/distributorsIndia01.html',G_HOST_CN,'/company/distributorsIndia.html',G_HOST_US,'/company/offices/distributorsIndia01.html',G_HOST_JP,'/company/distributorsIndia.html');
setURLs('/company/offices/distributorsIndia02.html',G_HOST_CN,'/company/distributorsIndia2.html',G_HOST_US,'/company/offices/distributorsIndia02.html',G_HOST_JP,'/company/distributorsIndia02.html');
setURLs('/company/offices/distributorsMalasia01.html',G_HOST_CN,'/company/malaysia.html',G_HOST_US,'/company/offices/distributorsMalasia01.html',G_HOST_JP,'/company/distributorsMalasia01.html');
setURLs('/products/pdk/pdk.html',G_HOST_CN,'/pdk_df/index.html',G_HOST_US,'/products/pdk/pdk.html',G_HOST_JP,'/products/ams/pdk.html');
setURLs('/designflows/availablePDKs.html',G_HOST_CN,'',G_HOST_US,'/designflows/availablePDKs.html',G_HOST_JP,'/designflows/availablePDKs.html');
setURLs('/designflows/partners.html',G_HOST_CN,'/pdk_df/index.html',G_HOST_US,'/designflows/partners.html',G_HOST_JP,'/pdk_df/pdk_df_ptnrs.html');
setURLs('/designflows/quality.html',G_HOST_CN,'/pdk_df/pdk_qa.html',G_HOST_US,'/designflows/quality.html',G_HOST_JP,'/pdk_df/pdk_qa.html');
setURLs('/designflows/maintainability.html',G_HOST_CN,'/pdk_df/pdk_mtnc.html',G_HOST_US,'/designflows/maintainability.html',G_HOST_JP,'/pdk_df/pdk_mtnc.html');
setURLs('/services/pdkServices/pdk_services.html',G_HOST_CN,'/services/pdk_services.html',G_HOST_US,'/services/pdkServices/pdk_services.html',G_HOST_JP,'/services/pdk_services.html');
setURLs('/designflows/documentation.html',G_HOST_CN,'/pdk_df/pdk_manual.html',G_HOST_US,'/designflows/documentation.html',G_HOST_JP,'/pdk_df/pdk_manual.html');
setURLs('/designflows/migration.html',G_HOST_CN,'/pdk_df/pdk_mgrtn.html',G_HOST_US,'/designflows/migration.html',G_HOST_JP,'/pdk_df/pdk_mgrtn.html');
setURLs('/tech_lib_EDA/index.html',G_HOST_CN,'/tech_lib_EDA/index.html',G_HOST_US,'/tech_lib_EDA/index.html',G_HOST_JP,'/tech_lib_EDA/index.html');
setURLs('/tech_lib_EDA/appNotes/AMS.html',G_HOST_CN,'/tech_lib_EDA/app_note/AMS.html',G_HOST_US,'/tech_lib_EDA/appNotes/AMS.html',G_HOST_JP,'/tech_lib_EDA/app_note/ams_index.html');
setURLs('/tech_lib_EDA/appNotes/customICCAD.html',G_HOST_CN,'/tech_lib_EDA/app_note/customICCAD.html',G_HOST_US,'/tech_lib_EDA/appNotes/customICCAD.html',G_HOST_JP,'/tech_lib_EDA/app_note/customiccad_index.html');
setURLs('/tech_lib_EDA/appNotes/parasiticExtraction.html',G_HOST_CN,'/tech_lib_EDA/app_note/Interconnect.html',G_HOST_US,'/tech_lib_EDA/appNotes/parasiticExtraction.html',G_HOST_JP,'/tech_lib_EDA/app_note/parasticextraction_index.html');
setURLs('/tech_lib_EDA/appNotes/digital.html',G_HOST_CN,'/tech_lib_EDA/app_note/digital.html',G_HOST_US,'/tech_lib_EDA/appNotes/digital.html',G_HOST_JP,'/tech_lib_EDA/app_note/digital_index.html');
setURLs('/tech_lib_EDA/publishedPapers/AMS.html',G_HOST_CN,'/tech_lib_EDA/publishedpapers/pp_spiceparaextract.html',G_HOST_US,'/tech_lib_EDA/publishedPapers/AMS.html',G_HOST_JP,'/tech_lib_EDA/publishedpapers/ams.html');
setURLs('/tech_lib_EDA/publishedPapers/customICCAD.html',G_HOST_CN,'/tech_lib_EDA/publishedpapers/pp_mask.html',G_HOST_US,'/tech_lib_EDA/publishedPapers/customICCAD.html',G_HOST_JP,'/tech_lib_EDA/publishedpapers/customic.html');
setURLs('/tech_lib_EDA/publishedPapers/parasticExtraction.html',G_HOST_CN,'/tech_lib_EDA/publishedpapers/pp_interconnect.html',G_HOST_US,'/tech_lib_EDA/publishedPapers/parasticExtraction.html',G_HOST_JP,'/tech_lib_EDA/publishedpapers/interconnect.html');
setURLs('/tech_lib_EDA/kbase/AMS/index.html',G_HOST_CN,'/tech_lib_EDA/kbase/ams/ams_index.html',G_HOST_US,'/tech_lib_EDA/kbase/AMS/index.html',G_HOST_JP,'/tech_lib_EDA/kbase/ams/ams_index.html');
setURLs('/tech_lib_EDA/kbase/AMS/analogCircuitSimulation.html',G_HOST_CN,'/tech_lib_EDA/kbase/ams/anlgcrctsimulation_index.html',G_HOST_US,'/tech_lib_EDA/kbase/AMS/analogCircuitSimulation.html',G_HOST_JP,'/tech_lib_EDA/kbase/ams/anlgcrctsimulation_index.html');
setURLs('/tech_lib_EDA/kbase/AMS/RFCircuitSimulation.html',G_HOST_CN,'/tech_lib_EDA/kbase/ams/rfcircuitsimulation_index.html',G_HOST_US,'/tech_lib_EDA/kbase/AMS/RFCircuitSimulation.html',G_HOST_JP,'/tech_lib_EDA/kbase/ams/rfcircuitsimulation_index.html');
setURLs('/tech_lib_EDA/kbase/AMS/mixedSignalCircuitSimulation.html',G_HOST_CN,'/tech_lib_EDA/kbase/ams/mixedsignalcircuitsimulation_index.html',G_HOST_US,'/tech_lib_EDA/kbase/AMS/mixedSignalCircuitSimulation.html',G_HOST_JP,'/tech_lib_EDA/kbase/ams/mixedsignalcircuitsimulation_index.html');
setURLs('/tech_lib_EDA/kbase/AMS/spiceModelExtraction.html',G_HOST_CN,'/tech_lib_EDA/kbase/ams/spicemodelextraction_index.html',G_HOST_US,'/tech_lib_EDA/kbase/AMS/spiceModelExtraction.html',G_HOST_JP,'/tech_lib_EDA/kbase/ams/spicemodelextraction_index.html');
setURLs('/tech_lib_EDA/kbase/customICCAD/index.html',G_HOST_CN,'/tech_lib_EDA/kbase/customiccad/customiccad_index.html',G_HOST_US,'/tech_lib_EDA/kbase/customICCAD/index.html',G_HOST_JP,'/tech_lib_EDA/kbase/customiccad/customiccad_index.html');
setURLs('/tech_lib_EDA/kbase/customICCAD/layoutEditing.html',G_HOST_CN,'/tech_lib_EDA/kbase/customiccad/layoutEditing.html',G_HOST_US,'/tech_lib_EDA/kbase/customICCAD/layoutEditing.html',G_HOST_JP,'/tech_lib_EDA/kbase/customiccad/customiccad_list.html');
setURLs('/tech_lib_EDA/kbase/customICCAD/layoutVerification.html',G_HOST_CN,'/tech_lib_EDA/kbase/customiccad/layoutVerification.html',G_HOST_US,'/tech_lib_EDA/kbase/customICCAD/layoutVerification.html',G_HOST_JP,'/tech_lib_EDA/kbase/customiccad/customiccad_ins.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/index.html',G_HOST_CN,'/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_index.html',G_HOST_US,'/tech_lib_EDA/kbase/parasiticExtraction/index.html',G_HOST_JP,'/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_index.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/structureCharacterization.html',G_HOST_CN,'/tech_lib_EDA/kbase/parasiticextraction/structureCharacterization.html',G_HOST_US,'/tech_lib_EDA/kbase/parasiticExtraction/structureCharacterization.html',G_HOST_JP,'/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_list.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/cellLevelExtraction.html',G_HOST_CN,'/tech_lib_EDA/kbase/parasiticextraction/cellLevelExtraction.html',G_HOST_US,'/tech_lib_EDA/kbase/parasiticExtraction/cellLevelExtraction.html',G_HOST_JP,'/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_cell.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/fullChipExtraction.html',G_HOST_CN,'/tech_lib_EDA/kbase/parasiticextraction/fullChipExtraction.html',G_HOST_US,'/tech_lib_EDA/kbase/parasiticExtraction/fullChipExtraction.html',G_HOST_JP,'/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_full.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/index.html',G_HOST_CN,'/tech_lib_EDA/kbase/digitalcad/digitalcad_index.html',G_HOST_US,'/tech_lib_EDA/kbase/logicVerification/index.html',G_HOST_JP,'/tech_lib_EDA/kbase/digitalcad/digitalcad_index.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/logicFaultSimulation.html',G_HOST_CN,'/tech_lib_EDA/kbase/digitalcad/logicFaultSimulation.html',G_HOST_US,'/tech_lib_EDA/kbase/logicVerification/logicFaultSimulation.html',G_HOST_JP,'/tech_lib_EDA/kbase/digitalcad/digitalcad_list.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/cellCoreChar.html',G_HOST_CN,'/tech_lib_EDA/kbase/digitalcad/cellCoreChar.html',G_HOST_US,'/tech_lib_EDA/kbase/logicVerification/cellCoreChar.html',G_HOST_JP,'/tech_lib_EDA/kbase/digitalcad/digitalcad_cell.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/placeAndRoute.html',G_HOST_CN,'/tech_lib_EDA/kbase/digitalcad/placeAndRoute.html',G_HOST_US,'/tech_lib_EDA/kbase/logicVerification/placeAndRoute.html',G_HOST_JP,'/tech_lib_EDA/kbase/digitalcad/digitalcad_place.html');
setURLs('/tech_lib_EDA/PDKs/index.html',G_HOST_CN,'/tech_lib_EDA/kbase/index.html',G_HOST_US,'/tech_lib_EDA/PDKs/index.html',G_HOST_JP,'/tech_lib_EDA/kbase/pdks/pdk_index.html');
setURLs('/tech_lib_EDA/trainingMaterials/AMS.html',G_HOST_CN,'/tech_lib_EDA/trainingmaterials/ams/ams_index.html',G_HOST_US,'/tech_lib_EDA/trainingMaterials/AMS.html',G_HOST_JP,'/tech_lib_EDA/trainingmaterials/ams/ams_index.html');
setURLs('/tech_lib_EDA/trainingMaterials/parasiticExtraction.html',G_HOST_CN,'/tech_lib_EDA/trainingmaterials/parasiticextraction/parasiticextraction_index.html',G_HOST_US,'/tech_lib_EDA/trainingMaterials/parasiticExtraction.html',G_HOST_JP,'/tech_lib_EDA/trainingmaterials/parasiticextraction/parasiticextraction_index.html');
setURLs('/tech_lib_EDA/trainingMaterials/digital.html',G_HOST_CN,'/tech_lib_EDA/trainingmaterials/digitalcad/digitalcad_index.html',G_HOST_US,'/tech_lib_EDA/trainingMaterials/digital.html',G_HOST_JP,'/tech_lib_EDA/trainingmaterials/digitalcad/digitalcad_index.html');
setURLs('/tech_lib_EDA/kbase/AMS/recommendedTextbooks.html',G_HOST_CN,'/tech_lib_EDA/books/ams_index.html',G_HOST_US,'/tech_lib_EDA/kbase/AMS/recommendedTextbooks.html',G_HOST_JP,'/tech_lib_EDA/recommendedtxt/ams_index.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/recommendedTextbooks.html',G_HOST_CN,'/tech_lib_EDA/kbase/digitalcad/textbooks.html',G_HOST_US,'/tech_lib_EDA/kbase/logicVerification/recommendedTextbooks.html',G_HOST_JP,'/tech_lib_EDA/recommendedtxt/digitalcad_index.html');
setURLs('/tech_lib_TCAD/index.html',G_HOST_CN,'/tech_lib_TCAD/index.html',G_HOST_US,'/tech_lib_TCAD/index.html',G_HOST_JP,'/tech_lib_TCAD/index.html');
setURLs('/tech_lib_TCAD/whitePapers/academicCourseMaterials/index.html',G_HOST_CN,'/tech_lib_TCAD/tech_info/academiccoursematerials/academic_index.html',G_HOST_US,'/tech_lib_TCAD/whitePapers/academicCourseMaterials/index.html',G_HOST_JP,'/tech_lib_TCAD/tech_info/academiccoursematerials/academic_index.html');
setURLs('/tech_lib_TCAD/whitePapers/recommendedTextbooks.html',G_HOST_CN,'/tech_lib_TCAD/tech_info/recommendedtextbooks/textbooks_index.html',G_HOST_US,'/tech_lib_TCAD/whitePapers/recommendedTextbooks.html',G_HOST_JP,'/tech_lib_TCAD/tech_info/recommendedtextbooks/textbooks_index.html');
setURLs('/tech_lib_TCAD/patents/index.html',G_HOST_CN,'/tech_lib_TCAD/tech_info/patents/patents_index.html',G_HOST_US,'/tech_lib_TCAD/patents/index.html',G_HOST_JP,'/tech_lib_TCAD/tech_info/patents/patents_index.html');
setURLs('/tech_lib_TCAD/books.html',G_HOST_CN,'/tech_lib_EDA/kbase/ams/books_index.html',G_HOST_US,'/tech_lib_TCAD/books.html',G_HOST_JP,'/tech_lib_TCAD/books/index.html');
setURLs('/tech_lib_TCAD/publishedPapers/allCategories.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/index.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/allCategories.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/allCategories.html');
setURLs('/tech_lib_TCAD/publishedPapers/soi.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_soi.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/soi.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_soi.html');
setURLs('/tech_lib_TCAD/publishedPapers/cmos.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_cmos.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/cmos.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_cmos.html');
setURLs('/tech_lib_TCAD/publishedPapers/iiiv.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_advanstmaterials.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/iiiv.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_advanstmaterials.html');
setURLs('/tech_lib_TCAD/publishedPapers/interconnect.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_interconnect.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/interconnect.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_interconnect.html');
setURLs('/tech_lib_TCAD/publishedPapers/tft.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_tft.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/tft.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_tft.html');
setURLs('/tech_lib_TCAD/publishedPapers/organic.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_organic.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/organic.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_organic.html');
setURLs('/tech_lib_TCAD/publishedPapers/sbt.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_biploar.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/sbt.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_biploar.html');
setURLs('/tech_lib_TCAD/publishedPapers/esd.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_esd.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/esd.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_esd.html');
setURLs('/tech_lib_TCAD/publishedPapers/power.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_power.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/power.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_power.html');
setURLs('/tech_lib_TCAD/publishedPapers/radiation.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_seu.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/radiation.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_seu.html');
setURLs('/tech_lib_TCAD/publishedPapers/optoelectronics.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_opt.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/optoelectronics.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_opt.html');
setURLs('/tech_lib_TCAD/publishedPapers/compound.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_cmpdvce.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/compound.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_cmpdvce.html');
setURLs('/tech_lib_TCAD/publishedPapers/silicon.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_slcndvce.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/silicon.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_slcndvce.html');
setURLs('/tech_lib_TCAD/publishedPapers/memory.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_mrydvce.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/memory.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_mrydvce.html');
setURLs('/tech_lib_TCAD/publishedPapers/mems.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_mems.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/mems.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_mems.html');
setURLs('/tech_lib_TCAD/publishedPapers/thyristor.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_thyristors.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/thyristor.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_thyristors.html');
setURLs('/tech_lib_TCAD/publishedPapers/finfet.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_finfet.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/finfet.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_finfet.html');
setURLs('/tech_lib_TCAD/publishedPapers/tcad.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_gtcad.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/tcad.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_gtcad.html');
setURLs('/tech_lib_TCAD/publishedPapers/detectors.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_dtctrs.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/detectors.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_dtctrs.html');
setURLs('/tech_lib_TCAD/publishedPapers/solarcells.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_slrcl.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/solarcells.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_slrcl.html');
setURLs('/tech_lib_TCAD/publishedPapers/nanoscale.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_nscldvc.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/nanoscale.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_nscldvc.html');
setURLs('/tech_lib_TCAD/publishedPapers/siliconNanoWire.html',G_HOST_CN,'/tech_lib_TCAD/publishedpapers/pp_slcnwr.html',G_HOST_US,'/tech_lib_TCAD/publishedPapers/siliconNanoWire.html',G_HOST_JP,'/tech_lib_TCAD/publishedpapers/pp_slcnwr.html');
setURLs('/examples/tcad/index.html',G_HOST_CN,'/products/presentation/tcad/examples/examples.html',G_HOST_US,'/examples/tcad/index.html',G_HOST_JP,'/examples/tcad/index.html');
setURLs('/examples/accucell/examples.html',G_HOST_CN,'',G_HOST_US,'/examples/accucell/examples.html',G_HOST_JP,'');
setURLs('/tech_lib_TCAD/videos/corporate/index.html',G_HOST_CN,'/video/corporate.html',G_HOST_US,'/tech_lib_TCAD/videos/corporate/index.html',G_HOST_JP,'/video/corporate/');
setURLs('/tech_lib_TCAD/videos/index.html',G_HOST_CN,'/video/index.html',G_HOST_US,'/tech_lib_TCAD/videos/index.html',G_HOST_JP,'/video/licensing/');
setURLs('/services/index.html',G_HOST_CN,'/services/index.html',G_HOST_US,'/services/index.html',G_HOST_JP,'/services/index.html');
setURLs('/services/tcadServices/tcad_services.html',G_HOST_CN,'/services/tcad_services.html',G_HOST_US,'/services/tcadServices/tcad_services.html',G_HOST_JP,'/services/tcad_services.html');
setURLs('/services/modelingServices/modeling_services.html',G_HOST_CN,'/services/modeling_services.html',G_HOST_US,'/services/modelingServices/modeling_services.html',G_HOST_JP,'/services/modeling_services.html');
setURLs('/services/parasiticExtractionServices/par_extrct.html',G_HOST_CN,'/services/par_extrct.html',G_HOST_US,'/services/parasiticExtractionServices/par_extrct.html',G_HOST_JP,'/services/par_extrct.html');
setURLs('/services/pdkServices/pdk_services.html',G_HOST_CN,'/services/pdk_services.html',G_HOST_US,'/services/pdkServices/pdk_services.html',G_HOST_JP,'/services/pdk_services.html');
setURLs('/services/cellcoreServices/cellcore_services.html',G_HOST_CN,'/services/cellcore.html',G_HOST_US,'/services/cellcoreServices/cellcore_services.html',G_HOST_JP,'/services/cellcore.html');
setURLs('/company/university_program.html',G_HOST_CN,'/company/academic/program.html',G_HOST_US,'/company/university_program.html',G_HOST_JP,'/company/academic/program.html');
setURLs('/company/profile/profile.html',G_HOST_CN,'/company/index.html',G_HOST_US,'/company/profile/profile.html',G_HOST_JP,'/company/index.html');
setURLs('/news/news/index.html',G_HOST_CN,'/news/index.html',G_HOST_US,'/news/news/index.html',G_HOST_JP,'/news/press/index.html');
setURLs('/news/pressreleases/2010.html',G_HOST_CN,'/news/index.html#2010',G_HOST_US,'/news/pressreleases/2010.html',G_HOST_JP,'/news/press/2010/index.html');
setURLs('/news/pressreleases/2009.html',G_HOST_CN,'/news/index.html#2009',G_HOST_US,'/news/pressreleases/2009.html',G_HOST_JP,'/news/press/2009/index.html');
setURLs('/news/pressreleases/2008.html',G_HOST_CN,'/news/index.html#2008',G_HOST_US,'/news/pressreleases/2008.html',G_HOST_JP,'/news/press/2008/index.html');
setURLs('/news/pressreleases/2007.html',G_HOST_CN,'/news/index.html#2007',G_HOST_US,'/news/pressreleases/2007.html',G_HOST_JP,'/news/press/2007/index.html');
setURLs('/news/pressreleases/2006.html',G_HOST_CN,'/news/index.html#2006',G_HOST_US,'/news/pressreleases/2006.html',G_HOST_JP,'/news/press/2006/index.html');
setURLs('/news/pressreleases/2005.html',G_HOST_CN,'/news/index.html#2005',G_HOST_US,'/news/pressreleases/2005.html',G_HOST_JP,'/news/press/2005/index.html');
setURLs('/news/pressreleases/2004.html',G_HOST_CN,'/news/index.html#2004',G_HOST_US,'/news/pressreleases/2004.html',G_HOST_JP,'/news/press/2004/index.html');
setURLs('/news/pressreleases/2003.html',G_HOST_CN,'/news/index.html#2003',G_HOST_US,'/news/pressreleases/2003.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002.html',G_HOST_CN,'/news/index.html#2002',G_HOST_US,'/news/pressreleases/2002.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001.html',G_HOST_CN,'/news/index.html#2001',G_HOST_US,'/news/pressreleases/2001.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000.html',G_HOST_CN,'/news/index.html#2000',G_HOST_US,'/news/pressreleases/2000.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000_02_07_01.html',G_HOST_CN,'/news/press/2000_02_07_01.html',G_HOST_US,'/news/pressreleases/2000_02_07_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000_03_17_01.html',G_HOST_CN,'/news/press/2000_03_17_01.html',G_HOST_US,'/news/pressreleases/2000_03_17_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000_11_10_01.html',G_HOST_CN,'/news/press/2000_11_10_01.html',G_HOST_US,'/news/pressreleases/2000_11_10_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000_11_27_01.html',G_HOST_CN,'/news/press/2000_11_27_01.html',G_HOST_US,'/news/pressreleases/2000_11_27_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000_11_29_01.html',G_HOST_CN,'/news/press/2000_11_29_01.html',G_HOST_US,'/news/pressreleases/2000_11_29_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2000_12_01_01.html',G_HOST_CN,'/news/press/2000_12_01_01.html',G_HOST_US,'/news/pressreleases/2000_12_01_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_01_29_02.html',G_HOST_CN,'/news/press/2001_01_29_02.html',G_HOST_US,'/news/pressreleases/2001_01_29_02.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_02_05_01.html',G_HOST_CN,'/news/press/2001_02_05_01.html',G_HOST_US,'/news/pressreleases/2001_02_05_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_02_28_01.html',G_HOST_CN,'/news/press/2001_02_28_01.html',G_HOST_US,'/news/pressreleases/2001_02_28_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_04_04_01.html',G_HOST_CN,'/news/press/2001_04_04_01.html',G_HOST_US,'/news/pressreleases/2001_04_04_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_04_25_01.html',G_HOST_CN,'/news/press/2001_04_25_01.html',G_HOST_US,'/news/pressreleases/2001_04_25_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_05_03_01.html',G_HOST_CN,'/news/press/2001_05_03_01.html',G_HOST_US,'/news/pressreleases/2001_05_03_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_05_04_01.html',G_HOST_CN,'/news/press/2001_05_04_01.html',G_HOST_US,'/news/pressreleases/2001_05_04_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_05_27_01.html',G_HOST_CN,'/news/press/2001_05_27_01.html',G_HOST_US,'/news/pressreleases/2001_05_27_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_07_18_02.html',G_HOST_CN,'/news/press/2001_07_18_02.html',G_HOST_US,'/news/pressreleases/2001_07_18_02.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_10_10_01.html',G_HOST_CN,'/news/press/2001_10_10_01.html',G_HOST_US,'/news/pressreleases/2001_10_10_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2001_11_30_01.html',G_HOST_CN,'/news/press/2001_11_30_01.html',G_HOST_US,'/news/pressreleases/2001_11_30_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_01_22_01.html',G_HOST_CN,'/news/press/2002_01_22_01.html',G_HOST_US,'/news/pressreleases/2002_01_22_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_02_06_01.html',G_HOST_CN,'/news/press/2002_02_06_01.html',G_HOST_US,'/news/pressreleases/2002_02_06_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_03_01_01.html',G_HOST_CN,'/news/press/2002_03_01_01.html',G_HOST_US,'/news/pressreleases/2002_03_01_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_04_03_01.html',G_HOST_CN,'/news/press/2002_04_03_01.html',G_HOST_US,'/news/pressreleases/2002_04_03_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_05_30_01.html',G_HOST_CN,'/news/press/2002_05_30_01.html',G_HOST_US,'/news/pressreleases/2002_05_30_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_06_06_01.html',G_HOST_CN,'/news/press/2002_06_06_01.html',G_HOST_US,'/news/pressreleases/2002_06_06_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_06_06_02.html',G_HOST_CN,'/news/press/2002_06_06_02.html',G_HOST_US,'/news/pressreleases/2002_06_06_02.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_10-09-01.html',G_HOST_CN,'/news/press/2002_10-09-01.html',G_HOST_US,'/news/pressreleases/2002_10-09-01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_10_17_01.html',G_HOST_CN,'/news/press/2002_10_17_01.html',G_HOST_US,'/news/pressreleases/2002_10_17_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_10_23_01.html',G_HOST_CN,'/news/press/2002_10_23_01.html',G_HOST_US,'/news/pressreleases/2002_10_23_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_10_31_01.html',G_HOST_CN,'/news/press/2002_10_31_01.html',G_HOST_US,'/news/pressreleases/2002_10_31_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2002_11_20_01.html',G_HOST_CN,'/news/press/2002_11_20_01.html',G_HOST_US,'/news/pressreleases/2002_11_20_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_02_05_01.html',G_HOST_CN,'/news/press/2003_02_05_01.html',G_HOST_US,'/news/pressreleases/2003_02_05_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_02_14_01.html',G_HOST_CN,'/news/press/2003_02_14_01.html',G_HOST_US,'/news/pressreleases/2003_02_14_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_03_14_01.html',G_HOST_CN,'/news/press/2003_03_14_01.html',G_HOST_US,'/news/pressreleases/2003_03_14_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_05_14_01.html',G_HOST_CN,'/news/press/2003_05_14_01.html',G_HOST_US,'/news/pressreleases/2003_05_14_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_05_30_01.html',G_HOST_CN,'/news/press/2003_05_30_01.html',G_HOST_US,'/news/pressreleases/2003_05_30_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_05_30_02.html',G_HOST_CN,'/news/press/2003_05_30_02.html',G_HOST_US,'/news/pressreleases/2003_05_30_02.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_07_09_01.html',G_HOST_CN,'/news/press/2003_07_09_01.html',G_HOST_US,'/news/pressreleases/2003_07_09_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_08_22_01.html',G_HOST_CN,'/news/press/2003_08_22_01.html',G_HOST_US,'/news/pressreleases/2003_08_22_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_08_26_01.html',G_HOST_CN,'/news/press/2003_08_26_01.html',G_HOST_US,'/news/pressreleases/2003_08_26_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_09_23_01.html',G_HOST_CN,'/news/press/2003_09_23_01.html',G_HOST_US,'/news/pressreleases/2003_09_23_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_09_30_01.html',G_HOST_CN,'/news/press/2003_09_30_01.html',G_HOST_US,'/news/pressreleases/2003_09_30_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_10_07_01.html',G_HOST_CN,'/news/press/2003_10_07_01.html',G_HOST_US,'/news/pressreleases/2003_10_07_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2003_10_09_01.html',G_HOST_CN,'/news/press/2003_10_09_01.html',G_HOST_US,'/news/pressreleases/2003_10_09_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2004_01_27_01.html',G_HOST_CN,'/news/press/2004_01_27_01.html',G_HOST_US,'/news/pressreleases/2004_01_27_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2004_03_02_01.html',G_HOST_CN,'/news/press/2004_03_02_01.html',G_HOST_US,'/news/pressreleases/2004_03_02_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2004_04_02_01.html',G_HOST_CN,'/news/press/2004_04_02_01.html',G_HOST_US,'/news/pressreleases/2004_04_02_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2004_05_20_01.html',G_HOST_CN,'/news/press/2004_05_20_01.html',G_HOST_US,'/news/pressreleases/2004_05_20_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2004_05_25_01.html',G_HOST_CN,'/news/press/2004_05_25_01.html',G_HOST_US,'/news/pressreleases/2004_05_25_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2004_06_01_01.html',G_HOST_CN,'/news/press/2004_06_01_01.html',G_HOST_US,'/news/pressreleases/2004_06_01_01.html',G_HOST_JP,'/news/press/2004_06_1.html');
setURLs('/news/pressreleases/2004_06_07_01.html',G_HOST_CN,'/news/press/2004_06_07_01.html',G_HOST_US,'/news/pressreleases/2004_06_07_01.html',G_HOST_JP,'/news/press/2004_06_7_1.html');
setURLs('/news/pressreleases/2004_06_07_02.html',G_HOST_CN,'/news/press/2004_06_07_02.html',G_HOST_US,'/news/pressreleases/2004_06_07_02.html',G_HOST_JP,'/news/press/2004_06_7_3.html');
setURLs('/news/pressreleases/2004_06_07_03.html',G_HOST_CN,'/news/press/2004_06_07_03.html',G_HOST_US,'/news/pressreleases/2004_06_07_03.html',G_HOST_JP,'/news/press/2004_06_7_2.html');
setURLs('/news/pressreleases/2004_12_09_04.html',G_HOST_CN,'/news/press/2004_12_09_04.html',G_HOST_US,'/news/pressreleases/2004_12_09_04.html',G_HOST_JP,'/news/press/2005_01_18.html');
setURLs('/news/pressreleases/2005_01_07_01.html',G_HOST_CN,'/news/press/2005_01_07_01.html',G_HOST_US,'/news/pressreleases/2005_01_07_01.html',G_HOST_JP,'/news/press/2005_04_15.html');
setURLs('/news/pressreleases/2005_01_18_01.html',G_HOST_CN,'/news/press/2005_01_18_01.html',G_HOST_US,'/news/pressreleases/2005_01_18_01.html',G_HOST_JP,'/news/press/2005_07_27.html');
setURLs('/news/pressreleases/2005_04_15_01.html',G_HOST_CN,'/news/press/2005_04_15_01.html',G_HOST_US,'/news/pressreleases/2005_04_15_01.html',G_HOST_JP,'/news/press/2005_08_08.html');
setURLs('/news/pressreleases/2005_07_27_01.html',G_HOST_CN,'/news/press/2005_07_27_01.html',G_HOST_US,'/news/pressreleases/2005_07_27_01.html',G_HOST_JP,'/news/press/2005_08_11.html');
setURLs('/news/pressreleases/2005_08_08_01.html',G_HOST_CN,'/news/press/2005_08_08_01.html',G_HOST_US,'/news/pressreleases/2005_08_08_01.html',G_HOST_JP,'/news/press/2006_01_09.html');
setURLs('/news/pressreleases/2005_08_11_01.html',G_HOST_CN,'/news/press/2005_08_11_01.html',G_HOST_US,'/news/pressreleases/2005_08_11_01.html',G_HOST_JP,'/news/press/2006_0424.html');
setURLs('/news/pressreleases/2006_01_09_01.html',G_HOST_CN,'/news/press/2006_01_09_01.html',G_HOST_US,'/news/pressreleases/2006_01_09_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2006_04_24_01.html',G_HOST_CN,'/news/press/2006_04_24_01.html',G_HOST_US,'/news/pressreleases/2006_04_24_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2006_08_14_01.html',G_HOST_CN,'/news/press/2006_08_14_01.html',G_HOST_US,'/news/pressreleases/2006_08_14_01.html',G_HOST_JP,'/news/press/2007_0511.html');
setURLs('/news/pressreleases/2007_04_17_01.html',G_HOST_CN,'/news/press/2007_04_17_01.html',G_HOST_US,'/news/pressreleases/2007_04_17_01.html',G_HOST_JP,'/news/press/2008_0623.html');
setURLs('/news/pressreleases/2007_05_10_01.html',G_HOST_CN,'/news/press/2007_05_10_01.html',G_HOST_US,'/news/pressreleases/2007_05_10_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2008_06_12_01.html',G_HOST_CN,'/news/press/2008_06_12_01.html',G_HOST_US,'/news/pressreleases/2008_06_12_01.html',G_HOST_JP,'/news/press/2008_0825.html');
setURLs('/news/pressreleases/2008_06_27_01.html',G_HOST_CN,'/news/press/2008_06_27_01.html',G_HOST_US,'/news/pressreleases/2008_06_27_01.html',G_HOST_JP,'/news/press/2008_0908.html');
setURLs('/news/pressreleases/2008_08_05_01.html',G_HOST_CN,'/news/press/2008_08_05_01.html',G_HOST_US,'/news/pressreleases/2008_08_05_01.html',G_HOST_JP,'/news/press/2008_1110.html');
setURLs('/news/pressreleases/2008_08_20_01.html',G_HOST_CN,'/news/press/2008_08_20_01.html',G_HOST_US,'/news/pressreleases/2008_08_20_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2008_11_05_01.html',G_HOST_CN,'/news/press/2008_11_05_01.html',G_HOST_US,'/news/pressreleases/2008_11_05_01.html',G_HOST_JP,'/news/press/2009_0407.html');
setURLs('/news/pressreleases/2009_01_08_01.html',G_HOST_CN,'/news/press/2009_01_08_01.html',G_HOST_US,'/news/pressreleases/2009_01_08_01.html',G_HOST_JP,'/news/press/2009_0422.html');
setURLs('/news/pressreleases/2009_04_08_01.html',G_HOST_CN,'/news/press/2009_04_08_01.html',G_HOST_US,'/news/pressreleases/2009_04_08_01.html',G_HOST_JP,'/news/press/2009_0511_jazz.html');
setURLs('/news/pressreleases/2009_04_22_01.html',G_HOST_CN,'/news/press/2009_04_22_01.html',G_HOST_US,'/news/pressreleases/2009_04_22_01.html',G_HOST_JP,'/news/press/2009_0511_token.html');
setURLs('/news/pressreleases/2009_04_28_01.html',G_HOST_CN,'/news/press/2009_04_28_01.html',G_HOST_US,'/news/pressreleases/2009_04_28_01.html',G_HOST_JP,'/news/press/2009_0528.html');
setURLs('/news/pressreleases/2009_04_29_01.html',G_HOST_CN,'/news/press/2009_04_29_01.html',G_HOST_US,'/news/pressreleases/2009_04_29_01.html',G_HOST_JP,'/news/press/2009_09_17.html');
setURLs('/news/pressreleases/2009_05_27_01.html',G_HOST_CN,'/news/press/2009_05_27_01.html',G_HOST_US,'/news/pressreleases/2009_05_27_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2009_09_16_01.html',G_HOST_CN,'/news/press/2009_09_16_01.html',G_HOST_US,'/news/pressreleases/2009_09_16_01.html',G_HOST_JP,'');
setURLs('/news/pressreleases/2009_10_27_01.html',G_HOST_CN,'/news/press/2009_10_27_01.html',G_HOST_US,'/news/pressreleases/2009_10_27_01.html',G_HOST_JP,'/news/press/2010_01_06_01.html');
setURLs('/news/pressreleases/2010_01_06_01.html',G_HOST_CN,'/news/press/2010_01_06_01.html',G_HOST_US,'/news/pressreleases/2010_01_06_01.html',G_HOST_JP,'/news/press/2010_01_06_01.html');
setURLs('/news/pressreleases/2010_02_17_01.html',G_HOST_CN,'/news/press/2010_02_17_01.html',G_HOST_US,'/news/pressreleases/2010_02_17_01.html',G_HOST_JP,'/news/press/2010_02_18_02.html');
setURLs('/news/pressreleases/index.html',G_HOST_CN,'/news/index.html',G_HOST_US,'/news/pressreleases/index.html',G_HOST_JP,'/news/press/index.html');
setURLs('/news/pressreleases/2010_04_14_01.html',G_HOST_CN,'/news/press/2010_04_14_01.html',G_HOST_US,'/news/pressreleases/2010_04_14_01.html',G_HOST_JP,'/news/press/2010_0415.html');
setURLs('/company/management/message_us.html',G_HOST_CN,'',G_HOST_US,'/company/management/index.html',G_HOST_JP,'/company/management.html');
setURLs('/company/partners/partners.html',G_HOST_CN,'/company/partners.html',G_HOST_US,'/company/partners/partners.html',G_HOST_JP,'/company/partners.html');
setURLs('/company/partners/foundry.html',G_HOST_CN,'/company/partners/foundry.html',G_HOST_US,'/designflows/partners.html',G_HOST_JP,'/company/partners/foundry.html');
setURLs('/company/partners/industryAssociations.html',G_HOST_CN,'/company/partners/industryAssociations.html',G_HOST_US,'/company/partners/industryAssociations.html',G_HOST_JP,'/company/partners/industryAssociations.html');
setURLs('/company/partners/university_partners.html',G_HOST_CN,'/company/academic/index.html',G_HOST_US,'/company/partners/university_partners.html',G_HOST_JP,'/company/partners/university_partners.html');
setURLs('/company/universityRegion/northAmerica.html',G_HOST_CN,'/company/academic/americas.html',G_HOST_US,'/company/universityRegion/northAmerica.html',G_HOST_JP,'/company/academic/universities_americas.html');
setURLs('/company/universityRegion/europe.html',G_HOST_CN,'/company/academic/europe.html',G_HOST_US,'/company/universityRegion/europe.html',G_HOST_JP,'/company/academic/universities_europe.html');
setURLs('/company/universityRegion/asia.html',G_HOST_CN,'/company/academic/asia.html',G_HOST_US,'/company/universityRegion/asia.html',G_HOST_JP,'/company/academic/universities_asia.html');
setURLs('/company/partners/EDAPartners.html',G_HOST_CN,'/company/partners/EDAPartners.html',G_HOST_US,'/company/partners/EDAPartners.html',G_HOST_JP,'/company/partners/EDAPartners.html');
setURLs('/company/openings/openings.html',G_HOST_CN,'',G_HOST_US,'/company/openings/openings.html',G_HOST_JP,'/saiyo/openings.html');
setURLs('/company/events/conferences.html',G_HOST_CN,'/company/conferences.html',G_HOST_US,'/company/events/conferences.html',G_HOST_JP,'/company/conferences/index.html');
setURLs('/posters/index.html',G_HOST_CN,'/company/posters.html',G_HOST_US,'/posters/index.html',G_HOST_JP,'/company/ad/index.html');
setURLs('/company/events/index.html',G_HOST_CN,'/news/events/index.html',G_HOST_US,'/company/events/index.html',G_HOST_JP,'/company/events/index.html');
setURLs('/company/sevenReasons.html',G_HOST_CN,'/company/reasons.html',G_HOST_US,'/company/sevenReasons.html',G_HOST_JP,'/company/reasons.html');
setURLs('/company/history.html',G_HOST_CN,'/company/history.html',G_HOST_US,'/company/history.html',G_HOST_JP,'/company/history.html');
setURLs('/tech_lib_TCAD/videos/universalToken.html',G_HOST_CN,'/video/playvideo.html?v=Universal_Tokens&width=815&height=246',G_HOST_US,'/tech_lib_TCAD/videos/universalToken.html',G_HOST_JP,'/video/corporate/universal_tokens.html');
setURLs('/tech_lib_TCAD/videos/registration.html',G_HOST_CN,'/video/playvideo.html?v=Register',G_HOST_US,'/tech_lib_TCAD/videos/registration.html',G_HOST_JP,'/video/licensing/RegistrationDownloads_JP.html');
setURLs('/tech_lib_TCAD/videos/linuxInstall.html',G_HOST_CN,'/video/playvideo.html?v=Install_for_Linux',G_HOST_US,'/tech_lib_TCAD/videos/linuxInstall.html',G_HOST_JP,'/video/licensing/Install_for_Linux_JP.html');
setURLs('/tech_lib_TCAD/videos/windowsInstall.html',G_HOST_CN,'/video/playvideo.html?v=Install_for_Windows',G_HOST_US,'/tech_lib_TCAD/videos/windowsInstall.html',G_HOST_JP,'/video/licensing/Install_for_Windows_JP.html');
setURLs('/tech_lib_TCAD/videos/networkInstall.html',G_HOST_CN,'/video/playvideo.html?v=Install_for_Network',G_HOST_US,'/tech_lib_TCAD/videos/networkInstall.html',G_HOST_JP,'/video/licensing/Install_for_Network_JP.html');
setURLs('/tech_lib_TCAD/videos/sflmInstall.html',G_HOST_CN,'/video/playvideo.html?v=SFLM02',G_HOST_US,'/tech_lib_TCAD/videos/sflmInstall.html',G_HOST_JP,'/video/licensing/LicenseManager-JP.html');
setURLs('/2014PurchaseHome/purchaseProducts.html',G_HOST_CN,'/download/purchaseProducts.html',G_HOST_US,'/2014PurchaseHome/purchaseProducts.html',G_HOST_JP,'/PurchaseHome/purchaseProducts.html');
setURLs('/2014PurchaseHome/purchaseTokens.html',G_HOST_CN,'/download/purchaseTokens.html',G_HOST_US,'/2014PurchaseHome/purchaseTokens.html',G_HOST_JP,'/PurchaseHome/purchaseTokens.html');
setURLs('/support/windows.html',G_HOST_CN,'/support/windows.html',G_HOST_US,'/support/windows.html',G_HOST_JP,'/support/windows.html');
setURLs('/company/offices/distributorsChina04.html',G_HOST_CN,'/company/distributorsChina04.html',G_HOST_US,'/company/offices/distributorsChina04.html',G_HOST_JP,'/company/distributorsChina04.html');


