//internationalization script

//gloable menu object with URL key
var G_LocalKeyURL = new Array();
var G_LocalKeyURL_invert = 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";

var G_HOST_CN_Reload = "/js/getWebUrl.html";
var G_HOST_JP_Reload = "/js/getWebUrl.html";
var G_HOST_KR_Reload = "/js/getWebUrl.html";
var G_HOST_TW_Reload = "/traditional/js/getWebUrl.html";


//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
//mUrl1 is the URL in US website
function setURLs(urlKey, mUrl1)
{

		G_LocalKeyURL.put(urlKey,mUrl1);
		G_LocalKeyURL_invert.put(mUrl1,urlKey);
}


//get coordinated URL per US url
//if not found, return null
function getInvertURL(curUrl){
		return G_LocalKeyURL_invert.get(curUrl);
}

function getOtherURL(host,url){
var reloadurl = "";
var URL_en = G_LocalKeyURL.get(url);
   
    
if(host == G_HOST_CN)
    reloadurl = G_HOST_CN_Reload;
else if(host == G_HOST_TW)
    reloadurl = G_HOST_TW_Reload;
else if(host == G_HOST_US)
{
    if(URL_en!=null)
        return G_HOST_US+URL_en;
    else
        return G_HOST_US;
}
else if(host == G_HOST_JP)
    reloadurl = G_HOST_JP_Reload;
else if(host == G_HOST_KR)
    reloadurl = G_HOST_KR_Reload;
       
    
return host+reloadurl+"?v="+URL_en;

}




//all we have to maintain is these below:
//we can generate them by excel formula 
//setURLs('/lang2.html','/lang2.html');
setURLs('/products/index.html','/products/index.html');
setURLs('/products/tcad/Process_Simulation/athena_overview.html','/products/process_simulation/athena.html');
setURLs('/products/tcad/Process_Simulation/victory.html','/products/vwf/athena/victory/victory_br.html');
setURLs('/products/tcad/Process_Simulation/victory_cell.html','/products/vwf/athena/victorycell/victoryCell_br.html');
setURLs('/products/tcad/Process_Simulation/ssuprem4.html','/products/vwf/athena/ss4/ss4_br.html');
setURLs('/products/tcad/Process_Simulation/MC_Implant.html','/products/vwf/athena/mcimplant/mcimplant_br.html');
setURLs('/products/tcad/Process_Simulation/Elite.html','/products/vwf/athena/elite/elite_br.html');
setURLs('/products/tcad/Process_Simulation/MC_Deposit_Etch.html','/products/vwf/athena/mcdeposit/mcdeposit_br.html');
setURLs('/products/tcad/Process_Simulation/Optolith.html','/products/vwf/athena/optolith/optolith_br.html');
setURLs('/products/tcad/Process_Simulation/athena1d.html','/products/vwf/athena/athena1D/athena1D_br.html');
setURLs('/products/tcad/Process_Simulation/ssprem3.html','/products/vwf/athena/ss3/ss3_br.html');
setURLs('/products/tcad/Device_Simulation/atlas_overview.html','/products/device_simulation/atlas.html');
setURLs('/products/tcad/Device_Simulation/victory_device.html','/products/vwf/atlas/victory/victory_br.html');
setURLs('/products/tcad/Device_Simulation/Device3D.html','/products/vwf/atlas/device3d/device3d_br.html');
setURLs('/products/tcad/Device_Simulation/Giga3D.html','/products/vwf/atlas/3D/giga3D/giga3D_br.html');
setURLs('/products/tcad/Device_Simulation/Luminous3D.html','/products/vwf/atlas/3D/luminous3D/luminous3D_br.html');
setURLs('/products/tcad/Device_Simulation/Quantum3D.html','/products/vwf/atlas/3D/quantum3D/quantum3D_br.html');
setURLs('/products/tcad/Device_Simulation/TFT3D.html','/products/vwf/atlas/3D/tft3D/tft3D_br.html');
setURLs('/products/tcad/Device_Simulation/Magnetic3D.html','/products/vwf/atlas/3D/magnetic3D/magnetic3D_br.html');
setURLs('/products/tcad/Device_Simulation/Thermal3D.html','/products/vwf/atlas/thermal3d/thermal3d.html');
setURLs('/products/tcad/Device_Simulation/MixedMode3D.html','/products/vwf/atlas/3D/mixedmode3D/mixedmode3d_br.html');
setURLs('/products/tcad/Device_Simulation/S-Pisces.html','/products/vwf/atlas/spisces/spisces_br.html');
setURLs('/products/tcad/Device_Simulation/Blaze.html','/products/vwf/atlas/blaze/blaze_br.html');
setURLs('/products/tcad/Device_Simulation/MC_Device.html','/products/vwf/atlas/2D/mc_device/mc_device_br.html');
setURLs('/products/tcad/Device_Simulation/Giga.html','/products/vwf/atlas/giga/giga_br.html');
setURLs('/products/tcad/Device_Simulation/MixedMode.html','/products/vwf/atlas/mmode/mmode_br.html');
setURLs('/products/tcad/Device_Simulation/Quantum.html','/products/vwf/atlas/2D/quantum2D/quantum2D_br.html');
setURLs('/products/tcad/Device_Simulation/Ferro.html','/products/vwf/atlas/ferro/ferro_br.html');
setURLs('/products/tcad/Device_Simulation/Magnetic.html','/products/vwf/atlas/2D/magnetic2D/magnetic2D_br.html');
setURLs('/products/tcad/Device_Simulation/TFT.html','/products/vwf/atlas/2D/tft/tft_br.html');
setURLs('/products/tcad/Device_Simulation/LED.html','/products/vwf/atlas/2D/led/led_br.html');
setURLs('/products/tcad/Device_Simulation/Luminous.html','/products/vwf/atlas/luminous/luminous_br.html');
setURLs('/products/tcad/Device_Simulation/Laser.html','/products/vwf/atlas/laser/laser_br.html');
setURLs('/products/tcad/Device_Simulation/VCSEL.html','/products/vwf/atlas/vcsels/vcsels.html');
setURLs('/products/tcad/Device_Simulation/Organic_Display.html','/products/vwf/atlas/organicdisplay/organicdisplay_br.html');
setURLs('/products/tcad/Device_Simulation/Organic_Solar.html','/products/vwf/atlas/organicsolar/organicsolar_br.html');
setURLs('/products/tcad/Device_Simulation/Noise.html','/products/vwf/atlas/noise/noise.html');
setURLs('/products/tcad/Device_Simulation/Mercury.html','/products/vwf/atlas/mercury/mercury_br.html');
setURLs('/products/tcad/Stress_Simulation/victory_stress.html','/products/vwf/athena/victorystress/victoryStress_br.html');
setURLs('/products/tcad/InteractiveTools/Overview.html','/products/interactive_tools/interactive.html');
setURLs('/products/tcad/InteractiveTools/DeckBuild.html','/products/interactive_tools/deckbuild/deckbuild_br.html');
setURLs('/products/tcad/InteractiveTools/MaskViews.html','/products/interactive_tools/maskviews/maskviews_br.html');
setURLs('/products/tcad/InteractiveTools/DevEdit.html','/products/interactive_tools/devedit/devedit_br.html');
setURLs('/products/tcad/InteractiveTools/TonyPlot.html','/products/interactive_tools/tonyplot/tonyplot_br.html');
setURLs('/products/tcad/InteractiveTools/TonyPlot3.html','/products/interactive_tools/tonyplot3d/tonyplot3D_br.html');
setURLs('/products/tcad/vwf.html','/products/virtual_wafer/vwf.html');
setURLs('/products/ams.html','/products/integrity/integrity.html');
setURLs('/products/ams/gateway.html','/products/design_capture/gateway.html');
setURLs('/products/ams/gateway200.html','/products/design_capture/gateway200/gateway200.html');
setURLs('/products/ams/smartspice.html','/products/circuit_simulation/smartspice.html');
setURLs('/products/ams/spicemodels.html','/products/analog/spicemodels/spicemodels.html');
setURLs('/products/ams/veriloga.html','/products/behavioral_modeling/verilog_A.html');
setURLs('/products/soiModels/ibis_support.html','/products/soiModels/ibis_support.html');
setURLs('/products/ams/ams_hvt.html','/products/ICDesignTools/highvoltage.html');
setURLs('/products/ams/smartspice200.html','/products/circuit_simulation/smartspice200/smartspice200.html');
setURLs('/products/total.html','/products/circuit_simulation/circuitsim.html');
setURLs('/products/ams/smartspice_rf.html','/products/RFsimulation/smartSpiceRF.html');
setURLs('/products/ams/harmony_ams.html','/products/circuit_simulation/harmony.html');
setURLs('/products/ams/utmostIV.html','/products/optimization/utmostiv.html');
setURLs('/products/ams/hisim_utmostIV.html','/products/optimization/hisim/hisim_utmost4.html');
setURLs('/products/ams/utmost.html','/products/model_extraction/utmost.html');
setURLs('/products/ams/noiseam_mos_br.html','/products/analog/vyper/noiseamp/noiseamp_mos/noiseam_mos_br.html');
setURLs('/products/ams/noiseam_Bipolar_br.html','/products/analog/vyper/noiseamp/noisamp_bipolar/noisebox.html');
setURLs('/products/ams/noiseam_mos_noise_br.html','/products/analog/vyper/noiseamp/mos/mos_noisebox.html');
setURLs('/products/ams/spayn_br.html','/products/analog/vyper/spayn/spayn_br.html');
setURLs('/products/cad.html','/products/ICDesignVerification/celebrity.html');
setURLs('/products/iccad/expert.html','/products/layout/expert.html');
setURLs('/products/iccad/expert200.html','/products/layout/expert200/expert200.html');
setURLs('/products/iccad/guardian.html','/products/drc_lvs/guardian.html');
setURLs('/products/iccad/hipex.html','/products/fullChipPE/hipex.html');
setURLs('/products/iccad/ClarityRLC.html','/products/RLCNetlistReduction/clarity_rlc.html');
setURLs('/products/parasitic_ext.html','/products/parasiticExtraction/discovery/discovery.html');
setURLs('/products/parasitic/exact.html','/products/model_extraction/exact.html');
setURLs('/products/parasitic/quest.html','/products/parasiticExtraction/quest/quest.html');
setURLs('/products/parasitic/clever.html','/products/lpe/clever.html');
setURLs('/products/parasitic/stellar.html','/products/parasiticExtraction/stellar/stellar.html');
setURLs('/products/digitalcad.html','/products/synergy/synergy.html');
setURLs('/products/logic/silos.html','/products/verilogSimulation/silos.html');
setURLs('/products/logic/hyperfault.html','/products/faultSimulation/hyperfault.html');
setURLs('/products/logic/accucell.html','/products/ip_characterization/accucell.html');
setURLs('/products/logic/accucore.html','/products/ip_characterization/accucore.html');
setURLs('/products/logic/catalyst.html','/products/catalyst/catalyst.html');
setURLs('/products/logic/catalyst_DA.html','/products/catalystDA/catalystDA.html');
setURLs('/products/logic/spider.html','/products/spider/spider.html');
setURLs('/license/licensing.html','/licensing/licensing.html');
setURLs('/license/tcadUnlimited.html','/licensing/tcadUnlimited/tcadUnlimited.html');
setURLs('/license/licensing_worldwide/licensing_worldwide_index.html','/licensing/worldwide/worldwideLicense.html');
setURLs('/license/licensing_worldwide/licensing_worldwide_SS.html','/licensing/smartSpiceWorldwide/worldwideLicense.html');
setURLs('/license/licensing_worldwide/licensing_worldwide_EXPERT.html','/licensing/expertWorldwide/expert_worldwide_license_br.html');
setURLs('/license/licensing_worldwide/licensing_worldwide_Gateway.html','/licensing/gatewayWorldwide/gateway_unlimited_br.html');
setURLs('/license/licensing_worldwide/licensing_worldwide_GDN-DRC.html','/licensing/guardianWorldwide/guardian_drc_ww_license_br.html');
setURLs('/license/licensing_worldwide/licensing_worldwide_HIPEX.html','/licensing/hipexWorldwide/hipex_unlimited_br.html');
setURLs('/license/licensing_universal.html','/licensing/universal/universal_token.html');
setURLs('/license/token_card.html','/licensing/tokenCard/token_card_br.html');
setURLs('/license/licensing_TCAD_OMNI.html','/licensing/tcad_omni/tcad_omni.html');
setURLs('/license/term/index.html','/licensing/term/term-based.html');
setURLs('/license/perpetual/index.html','/licensing/perpetual/perpetual.html');
setURLs('/support/os_load.html','/support/platforms.html');
setURLs('/company/offices.html','/company/offices/offices.html');
setURLs('/company/ushead.html','/company/offices/california.html');
setURLs('/company/directions/directions.html','/company/directions/directions.html');
setURLs('/company/us_ariz.html','/company/offices/arizona.html');
setURLs('/company/directions/ar-directions.html','/company/directions/ar-directions.html');
setURLs('/company/us_austin.html','/company/offices/texas.html');
setURLs('/company/directions/au-directions.html','/company/directions/au-directions.html');
setURLs('/company/us_massa.html','/company/offices/massachusetts.html');
setURLs('/company/directions/ma-directions.html','/company/directions/ma-directions.html');
setURLs('/company/yokohama.html','/company/offices/japan.html');
setURLs('/company/directions/japan_directionsYokohama.html','/company/directions/japan_directionsYokohama.html');
setURLs('/company/directions/japan_directionsKyoto.html','/company/directions/japan_directionsKyoto.html');
setURLs('/company/uk.html','/company/offices/uk.html');
setURLs('/company/directions/uk_directions.html','/company/directions/uk_directions.html');
setURLs('/company/korea.html','/company/offices/korea.html');
setURLs('/company/directions/korea_directions.html','/company/directions/korea_directions.html');
setURLs('/company/taiwan.html','/company/offices/taiwan.html');
setURLs('/company/directions/taiwan_directions.html','/company/directions/taiwan_directions.html');
setURLs('/company/singapore.html','/company/offices/singapore.html');
setURLs('/company/directions/singapore_directions.html','/company/directions/singapore_directions.html');
setURLs('/company/distributorsChina01.html','/company/offices/distributorsChina01.html');
setURLs('/company/distributorsChina02.html','/company/offices/distributorsChina02.html');
setURLs('/company/distributorsChina03.html','/company/offices/distributorsChina03.html');
setURLs('/company/distributorsIndia.html','/company/offices/distributorsIndia01.html');
setURLs('/company/distributorsIndia02.html','/company/offices/distributorsIndia02.html');
setURLs('/company/distributorsMalasia01.html','/company/offices/distributorsMalasia01.html');
setURLs('/products/ams/pdk.html','/products/pdk/pdk.html');
// setURLs('/designflows/availablePDKs.html','/designflows/availablePDKs.html');
setURLs('/pdk_df/pdk_df_ptnrs.html','/designflows/partners.html');
setURLs('/pdk_df/pdk_qa.html','/designflows/quality.html');
setURLs('/pdk_df/pdk_mtnc.html','/designflows/maintainability.html');
setURLs('/services/pdk_services.html','/services/pdkServices/pdk_services.html');
setURLs('/pdk_df/pdk_manual.html','/designflows/documentation.html');
setURLs('/pdk_df/pdk_mgrtn.html','/designflows/migration.html');
setURLs('/tech_lib_EDA/index.html','/tech_lib_EDA/index.html');
setURLs('/tech_lib_EDA/app_note/ams_index.html','/tech_lib_EDA/appNotes/AMS.html');
setURLs('/tech_lib_EDA/app_note/customiccad_index.html','/tech_lib_EDA/appNotes/customICCAD.html');
setURLs('/tech_lib_EDA/app_note/parasticextraction_index.html','/tech_lib_EDA/appNotes/parasiticExtraction.html');
setURLs('/tech_lib_EDA/app_note/digital_index.html','/tech_lib_EDA/appNotes/digital.html');
setURLs('/tech_lib_EDA/publishedpapers/ams.html','/tech_lib_EDA/publishedPapers/AMS.html');
setURLs('/tech_lib_EDA/publishedpapers/customic.html','/tech_lib_EDA/publishedPapers/customICCAD.html');
setURLs('/tech_lib_EDA/publishedpapers/interconnect.html','/tech_lib_EDA/publishedPapers/parasticExtraction.html');
setURLs('/tech_lib_EDA/kbase/ams/ams_index.html','/tech_lib_EDA/kbase/AMS/index.html');
setURLs('/tech_lib_EDA/kbase/ams/anlgcrctsimulation_index.html','/tech_lib_EDA/kbase/AMS/analogCircuitSimulation.html');
setURLs('/tech_lib_EDA/kbase/ams/rfcircuitsimulation_index.html','/tech_lib_EDA/kbase/AMS/RFCircuitSimulation.html');
setURLs('/tech_lib_EDA/kbase/ams/mixedsignalcircuitsimulation_index.html','/tech_lib_EDA/kbase/AMS/mixedSignalCircuitSimulation.html');
setURLs('/tech_lib_EDA/kbase/ams/spicemodelextraction_index.html','/tech_lib_EDA/kbase/AMS/spiceModelExtraction.html');
setURLs('/tech_lib_EDA/kbase/customiccad/customiccad_index.html','/tech_lib_EDA/kbase/customICCAD/index.html');
setURLs('/tech_lib_EDA/kbase/customiccad/customiccad_list.html','/tech_lib_EDA/kbase/customICCAD/layoutEditing.html');
setURLs('/tech_lib_EDA/kbase/customiccad/customiccad_ins.html','/tech_lib_EDA/kbase/customICCAD/layoutVerification.html');
setURLs('/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_index.html','/tech_lib_EDA/kbase/parasiticExtraction/index.html');
setURLs('/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_list.html','/tech_lib_EDA/kbase/parasiticExtraction/structureCharacterization.html');
setURLs('/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_cell.html','/tech_lib_EDA/kbase/parasiticExtraction/cellLevelExtraction.html');
setURLs('/tech_lib_EDA/kbase/parasiticextraction/parasticextraction_full.html','/tech_lib_EDA/kbase/parasiticExtraction/fullChipExtraction.html');
setURLs('/tech_lib_EDA/kbase/digitalcad/digitalcad_index.html','/tech_lib_EDA/kbase/logicVerification/index.html');
setURLs('/tech_lib_EDA/kbase/digitalcad/digitalcad_list.html','/tech_lib_EDA/kbase/logicVerification/logicFaultSimulation.html');
setURLs('/tech_lib_EDA/kbase/digitalcad/digitalcad_cell.html','/tech_lib_EDA/kbase/logicVerification/cellCoreChar.html');
setURLs('/tech_lib_EDA/kbase/digitalcad/digitalcad_place.html','/tech_lib_EDA/kbase/logicVerification/placeAndRoute.html');
setURLs('/tech_lib_EDA/kbase/pdks/pdk_index.html','/tech_lib_EDA/PDKs/index.html');
setURLs('/tech_lib_EDA/trainingmaterials/ams/ams_index.html','/tech_lib_EDA/trainingMaterials/AMS.html');
setURLs('/tech_lib_EDA/trainingmaterials/parasiticextraction/parasiticextraction_index.html','/tech_lib_EDA/trainingMaterials/parasiticExtraction.html');
setURLs('/tech_lib_EDA/trainingmaterials/digitalcad/digitalcad_index.html','/tech_lib_EDA/trainingMaterials/digital.html');
setURLs('/tech_lib_EDA/recommendedtxt/ams_index.html','/tech_lib_EDA/kbase/AMS/recommendedTextbooks.html');
setURLs('/tech_lib_EDA/recommendedtxt/digitalcad_index.html','/tech_lib_EDA/kbase/logicVerification/recommendedTextbooks.html');
setURLs('/tech_lib_TCAD/index.html','/tech_lib_TCAD/index.html');
setURLs('/tech_lib_TCAD/','/tech_lib_TCAD/index.html');
setURLs('/tech_lib_TCAD/tech_info/academiccoursematerials/academic_index.html','/tech_lib_TCAD/whitePapers/academicCourseMaterials/index.html');
setURLs('/tech_lib_TCAD/tech_info/recommendedtextbooks/textbooks_index.html','/tech_lib_TCAD/whitePapers/recommendedTextbooks.html');
setURLs('/tech_lib_TCAD/tech_info/patents/patents_index.html','/tech_lib_TCAD/patents/index.html');
setURLs('/tech_lib_TCAD/books/index.html','/tech_lib_TCAD/books.html');
setURLs('/tech_lib_TCAD/publishedpapers/allCategories.html','/tech_lib_TCAD/publishedPapers/allCategories.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_soi.html','/tech_lib_TCAD/publishedPapers/soi.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_cmos.html','/tech_lib_TCAD/publishedPapers/cmos.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_advanstmaterials.html','/tech_lib_TCAD/publishedPapers/iiiv.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_interconnect.html','/tech_lib_TCAD/publishedPapers/interconnect.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_tft.html','/tech_lib_TCAD/publishedPapers/tft.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_organic.html','/tech_lib_TCAD/publishedPapers/organic.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_biploar.html','/tech_lib_TCAD/publishedPapers/sbt.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_esd.html','/tech_lib_TCAD/publishedPapers/esd.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_power.html','/tech_lib_TCAD/publishedPapers/power.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_seu.html','/tech_lib_TCAD/publishedPapers/radiation.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_opt.html','/tech_lib_TCAD/publishedPapers/optoelectronics.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_cmpdvce.html','/tech_lib_TCAD/publishedPapers/compound.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_slcndvce.html','/tech_lib_TCAD/publishedPapers/silicon.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_mrydvce.html','/tech_lib_TCAD/publishedPapers/memory.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_mems.html','/tech_lib_TCAD/publishedPapers/mems.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_thyristors.html','/tech_lib_TCAD/publishedPapers/thyristor.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_finfet.html','/tech_lib_TCAD/publishedPapers/finfet.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_gtcad.html','/tech_lib_TCAD/publishedPapers/tcad.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_dtctrs.html','/tech_lib_TCAD/publishedPapers/detectors.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_slrcl.html','/tech_lib_TCAD/publishedPapers/solarcells.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_nscldvc.html','/tech_lib_TCAD/publishedPapers/nanoscale.html');
setURLs('/tech_lib_TCAD/publishedpapers/pp_slcnwr.html','/tech_lib_TCAD/publishedPapers/siliconNanoWire.html');
setURLs('/examples/tcad/examples.html','/examples/tcad/examples.html');
setURLs('/video/corporate/','/tech_lib_TCAD/videos/corporate/index.html');
setURLs('/video/licensing/','/tech_lib_TCAD/videos/index.html');
setURLs('/services/index.html','/services/index.html');
setURLs('/services/tcad_services.html','/services/tcadServices/tcad_services.html');
setURLs('/services/modeling_services.html','/services/modelingServices/modeling_services.html');
setURLs('/services/par_extrct.html','/services/parasiticExtractionServices/par_extrct.html');
setURLs('/services/pdk_services.html','/services/pdkServices/pdk_services.html');
setURLs('/services/cellcore.html','/services/cellcoreServices/cellcore_services.html');
setURLs('/company/academic/program.html','/company/university_program.html');
setURLs('/company/index.html','/company/profile/profile.html');
setURLs('/news/press/index.html','/news/news/index.html');
setURLs('/news/press/2010/index.html','/news/pressreleases/2010.html');
setURLs('/news/press/2009/index.html','/news/pressreleases/2009.html');
setURLs('/news/press/2008/index.html','/news/pressreleases/2008.html');
setURLs('/news/press/2007/index.html','/news/pressreleases/2007.html');
setURLs('/news/press/2006/index.html','/news/pressreleases/2006.html');
setURLs('/news/press/2005/index.html','/news/pressreleases/2005.html');
setURLs('/news/press/2004/index.html','/news/pressreleases/2004.html');
setURLs('/news/press/2004_06_1.html','/news/pressreleases/2004_06_01_01.html');
setURLs('/news/press/2004_06_7_1.html','/news/pressreleases/2004_06_07_01.html');
setURLs('/news/press/2004_06_7_3.html','/news/pressreleases/2004_06_07_02.html');
setURLs('/news/press/2004_06_7_2.html','/news/pressreleases/2004_06_07_03.html');
setURLs('/news/press/2005_01_18.html','/news/pressreleases/2004_12_09_04.html');
setURLs('/news/press/2005_04_15.html','/news/pressreleases/2005_01_07_01.html');
setURLs('/news/press/2005_07_27.html','/news/pressreleases/2005_01_18_01.html');
setURLs('/news/press/2005_08_08.html','/news/pressreleases/2005_04_15_01.html');
setURLs('/news/press/2005_08_11.html','/news/pressreleases/2005_07_27_01.html');
setURLs('/news/press/2006_01_09.html','/news/pressreleases/2005_08_08_01.html');
setURLs('/news/press/2006_0424.html','/news/pressreleases/2005_08_11_01.html');
setURLs('/news/press/2007_0511.html','/news/pressreleases/2006_08_14_01.html');
setURLs('/news/press/2008_0623.html','/news/pressreleases/2007_04_17_01.html');
setURLs('/news/press/2008_0825.html','/news/pressreleases/2008_06_12_01.html');
setURLs('/news/press/2008_0908.html','/news/pressreleases/2008_06_27_01.html');
setURLs('/news/press/2008_1110.html','/news/pressreleases/2008_08_05_01.html');
setURLs('/news/press/2009_0407.html','/news/pressreleases/2008_11_05_01.html');
setURLs('/news/press/2009_0422.html','/news/pressreleases/2009_01_08_01.html');
setURLs('/news/press/2009_0511_jazz.html','/news/pressreleases/2009_04_08_01.html');
setURLs('/news/press/2009_0511_token.html','/news/pressreleases/2009_04_22_01.html');
setURLs('/news/press/2009_0528.html','/news/pressreleases/2009_04_28_01.html');
setURLs('/news/press/2009_09_17.html','/news/pressreleases/2009_04_29_01.html');
setURLs('/news/press/2010_01_06_01.html','/news/pressreleases/2009_10_27_01.html');
setURLs('/news/press/2010_01_06_01.html','/news/pressreleases/2010_01_06_01.html');
setURLs('/news/press/2010_02_18_02.html','/news/pressreleases/2010_02_17_01.html');
setURLs('/news/press/index.html','/news/pressreleases/index.html');
setURLs('/news/press/2010_0415.html','/news/pressreleases/2010_04_14_01.html');
setURLs('/company/management.html','/company/management/index.html');
setURLs('/company/partners.html','/company/partners/partners.html');
setURLs('/company/partners/foundry.html','/designflows/partners.html');
setURLs('/company/partners/industryAssociations.html','/company/partners/industryAssociations.html');
setURLs('/company/partners/university_partners.html','/company/partners/university_partners.html');
setURLs('/company/academic/universities_americas.html','/company/universityRegion/northAmerica.html');
setURLs('/company/academic/universities_europe.html','/company/universityRegion/europe.html');
setURLs('/company/academic/universities_asia.html','/company/universityRegion/asia.html');
setURLs('/company/partners/EDAPartners.html','/company/partners/EDAPartners.html');
setURLs('/saiyo/openings.html','/company/openings/openings.html');
setURLs('/company/conferences/index.html','/company/events/conferences.html');
setURLs('/company/ad/index.html','/posters/index.html');
setURLs('/company/events/index.html','/company/events/index.html');
setURLs('/company/reasons.html','/company/sevenReasons.html');
setURLs('/company/history.html','/company/history.html');
setURLs('/video/corporate/universal_tokens.html','/tech_lib_TCAD/videos/universalToken.html');
setURLs('/video/licensing/RegistrationDownloads_JP.html','/tech_lib_TCAD/videos/registration.html');
setURLs('/video/licensing/Install_for_Linux_JP.html','/tech_lib_TCAD/videos/linuxInstall.html');
setURLs('/video/licensing/Install_for_Windows_JP.html','/tech_lib_TCAD/videos/windowsInstall.html');
setURLs('/video/licensing/Install_for_Network_JP.html','/tech_lib_TCAD/videos/networkInstall.html');
setURLs('/video/licensing/LicenseManager-JP.html','/tech_lib_TCAD/videos/sflmInstall.html');
setURLs('/PurchaseHome/purchaseProducts.html','/2014PurchaseHome/purchaseProducts.html');
setURLs('/PurchaseHome/purchaseTokens.html','/2014PurchaseHome/purchaseTokens.html');
setURLs('/support/windows.html','/support/windows.html');
setURLs('/company/distributorsChina04.html','/company/offices/distributorsChina04.html');
setURLs('/news/press/2010_05_27_01.html','/news/pressreleases/2010_05_26_01.html');
setURLs('/news/press/2010_06_24.html','/news/pressreleases/2010_06_23_01.html');
setURLs('/products/iccad/clarity_rlc_Synopsys_StarRC_Cadence_QRC.html','/products/RLCNetlistReduction/clarity_rlc_Synopsys_StarRC_Cadence_QRC.html');
setURLs('/products/logic/catalyst_Cadence_SPECTRE_Synopsys_HSPICE.html','/products/catalyst/catalyst_Cadence_SPECTRE_Synopsys_HSPICE.html');
setURLs('/products/logic/catalystDA_Mentor_Graphics_Calibre.html','/products/catalystDA/catalystDA_Mentor_Graphics_Calibre.html');
setURLs('/products/ams/harmony_Cadence_Virtuoso.html','/products/circuit_simulation/harmony_Cadence_Virtuoso.html');
setURLs('/products/ams/smartspice_HSPICE_ELDO.html','/products/circuit_simulation/smartspice_HSPICE_ELDO.html');
setURLs('/products/iccad/guardian_Mentor_Graphics_CalibreLVS_Cadence_Assura.html','/products/drc_lvs/guardian_Mentor_Graphics_CalibreLVS_Cadence_Assura.html');
setURLs('/products/iccad/hipex_Synopsys_StarRC_Cadence_Assura.html','/products/fullChipPE/hipex_Synopsys_StarRC_Cadence_Assura.html');
setURLs('/products/iccad/expertComparison.html','/products/layout/expertComparison.html');
setURLs('/company/distributorsChina05.html','/company/offices/distributorsChina05.html');
setURLs('/products/2010BaselineFeatures.html','/products/2010BaselineFeatures.html');
setURLs('/products/newFeatures/victoryProcess.html','/products/newFeatures/victoryProcess.html');
setURLs('/products/newFeatures/victoryDevice.html','/products/newFeatures/victoryDevice.html');
setURLs('/products/newFeatures/victoryCell.html','/products/newFeatures/victoryCell.html');
setURLs('/products/newFeatures/victoryStress.html','/products/newFeatures/victoryStress.html');
setURLs('/products/newFeatures/athena.html','/products/newFeatures/athena.html');
setURLs('/products/newFeatures/atlas.html','/products/newFeatures/atlas.html');
setURLs('/products/newFeatures/vwf.html','/products/newFeatures/vwf.html');
setURLs('/products/newFeatures/interactiveTools.html','/products/newFeatures/interactiveTools.html');
setURLs('/products/newFeatures/gateway.html','/products/newFeatures/gateway.html');
setURLs('/products/newFeatures/smartSpice.html','/products/newFeatures/smartSpice.html');
setURLs('/products/newFeatures/veriloga.html','/products/newFeatures/verilog-A.html');
setURLs('/products/newFeatures/smartSpiceRF.html','/products/newFeatures/smartSpiceRF.html');
setURLs('/products/newFeatures/harmony.html','/products/newFeatures/harmony.html');
setURLs('/products/newFeatures/utmostiii.html','/products/newFeatures/utmostiii.html');
setURLs('/products/newFeatures/utmostiv.html','/products/newFeatures/utmostiv.html');
setURLs('/products/newFeatures/spayn.html','/products/newFeatures/spayn.html');
setURLs('/products/newFeatures/smartView.html','/products/newFeatures/smartView.html');
setURLs('/products/newFeatures/expert.html','/products/newFeatures/expert.html');
setURLs('/products/newFeatures/guardian.html','/products/newFeatures/guardian.html');
setURLs('/products/newFeatures/hipex.html','/products/newFeatures/hipex.html');
setURLs('/products/newFeatures/clarityRLC.html','/products/newFeatures/clarityRLC.html');
setURLs('/products/newFeatures/quest.html','/products/newFeatures/quest.html');
setURLs('/products/newFeatures/clever.html','/products/newFeatures/clever.html');
setURLs('/products/newFeatures/silos.html','/products/newFeatures/silos.html');
setURLs('/products/newFeatures/accuCell.html','/products/newFeatures/accuCell.html');
setURLs('/products/newFeatures/accuCore.html','/products/newFeatures/accuCore.html');
setURLs('/products/newFeatures/hyperFault.html','/products/newFeatures/hyperFault.html');
setURLs('/products/newFeatures/catalystAD.html','/products/newFeatures/catalystAD.html');
setURLs('/products/newFeatures/catalystDA.html','/products/newFeatures/catalystDA.html');
setURLs('/products/newFeatures/spider.html','/products/newFeatures/spider.html');
setURLs('/products/design_capture/gateway_cadence_virtuoso.html','/products/ams/gateway_cadence_virtuoso.html');
setURLs('/pdk_df/installation.html','/products/pdk/installation.html');
setURLs('/news/press/2010_08_18.html','/news/pressreleases/2010_08_18_01.html');
setURLs('/products/ams/smartSpiceRF_cadence_synopsys.html','/products/RFsimulation/smartSpiceRF_cadence_synopsys.html');
setURLs('/homepage/copyright.html','/copyright.html');
setURLs('/company/events/2010-IEDM.html','/company/events/2010-IEDM.html');
setURLs('/examples/index.html','/examples/index.html');
setURLs('/examples/tcad/index.html','/examples/tcad/index.html');
setURLs('/examples/vwf/section1/index.html','/examples/vwf/section1/index.html');
setURLs('/examples/gateway/index.html','/examples/gateway/index.html');
setURLs('/examples/utmost4/section1/index.html','/examples/utmost4/section1/index.html');
setURLs('/examples/harmony/index.html','/examples/harmony/index.html');
setURLs('/examples/smartspicerf/section1/index.html','/examples/smartspicerf/section1/index.html');
setURLs('/examples/guardiandrc/index.html','/examples/guardiandrc/index.html');
setURLs('/examples/guardianlvs/section1/index.html','/examples/guardianlvs/section1/index.html');
setURLs('/examples/expert/index.html','/examples/expert/index.html');
setURLs('/examples/hipex/section1/index.html','/examples/hipex/section1/index.html');
setURLs('/examples/quest/section1/index.html','/examples/quest/section1/index.html');
setURLs('/examples/clever/section1/index.html','/examples/clever/section1/index.html');
setURLs('/examples/accucell/section1/index.html','/examples/accucell/section1/index.html');
setURLs('/examples/silos/section1/index.html','/examples/silos/section1/index.html');
setURLs('/examples/hyperflt/section1/index.html','/examples/hyperflt/section1/index.html');
setURLs('/products/migration/tma.html','/products/migration/tmaTools_migration.html');
setURLs('/products/logic/accucell_Synopsys_Cadence.html','/products/ip_characterization/accucell_Synopsys_Cadence.html');
setURLs('/news/press/2010_12_09.html','/news/pressreleases/2010_12_08_01.html');
setURLs('/news/press/2011/index.html','/news/pressreleases/2011.html');
setURLs('/video/TokenVideo.html','/tech_lib_TCAD/videos/TokenVideo.html');
setURLs('/homepage/privacy.html','/privacy.html');
setURLs('/company/distributorsIndia03.html','/company/offices/distributorsIndia03.html');
setURLs('/products/tcad/Device_Simulation/LED3D.html','/products/vwf/atlas/3D/led3D/led3d_br.html');
setURLs('/company/distributorsIndia04.html','/company/offices/distributorsIndia04.html');
setURLs('/company/distributorsIndia05.html','/company/offices/distributorsIndia05.html');
setURLs('/tech_lib_TCAD/publishedpapers/process.html','/tech_lib_TCAD/publishedPapers/process.html');
setURLs('/tech_lib_TCAD/publishedpapers/sbt.html','/tech_lib_TCAD/publishedPapers/sbt.html');
setURLs('/tech_lib_TCAD/publishedpapers/cmos.html','/tech_lib_TCAD/publishedPapers/cmos.html');
setURLs('/tech_lib_TCAD/publishedpapers/tft.html','/tech_lib_TCAD/publishedPapers/tft.html');
setURLs('/tech_lib_TCAD/publishedpapers/soi.html','/tech_lib_TCAD/publishedPapers/soi.html');
setURLs('/tech_lib_TCAD/publishedpapers/interconnect.html','/tech_lib_TCAD/publishedPapers/interconnect.html');
setURLs('/tech_lib_TCAD/publishedpapers/organic.html','/tech_lib_TCAD/publishedPapers/organic.html');
setURLs('/tech_lib_TCAD/publishedpapers/esd.html','/tech_lib_TCAD/publishedPapers/esd.html');
setURLs('/tech_lib_TCAD/publishedpapers/power.html','/tech_lib_TCAD/publishedPapers/power.html');
setURLs('/tech_lib_TCAD/publishedpapers/radiation.html','/tech_lib_TCAD/publishedPapers/radiation.html');
setURLs('/tech_lib_TCAD/publishedpapers/optoelectronics.html','/tech_lib_TCAD/publishedPapers/optoelectronics.html');
setURLs('/tech_lib_TCAD/publishedpapers/memory.html','/tech_lib_TCAD/publishedPapers/memory.html');
setURLs('/tech_lib_TCAD/publishedpapers/mems.html','/tech_lib_TCAD/publishedPapers/mems.html');
setURLs('/tech_lib_TCAD/publishedpapers/solarcells.html','/tech_lib_TCAD/publishedPapers/solarcells.html');
setURLs('/tech_lib_TCAD/publishedpapers/nanoscale.html','/tech_lib_TCAD/publishedPapers/nanoscale.html');
setURLs('/news/press/2011_12_02.html','/news/pressreleases/2011_12_02_01.html');
setURLs('/video/tcadvideos/index.html','/tech_lib_TCAD/videos/tcadVideos.html');
setURLs('/video/tcadvideos/ledOptimization.html','/tech_lib_TCAD/videos/ledOptimization.html');
setURLs('/news/press/2012_01_26.html','/news/pressreleases/2012_01_26_01.html');

// setURLs('','');

// Lڏ
// setURLs('{','US');

