//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('/products/index.html','/products/index.html');
setURLs('/products/process_simulation/athena.html','/products/process_simulation/athena.html');
setURLs('/products/vwf/athena/victory/victory_br.html','/products/vwf/athena/victory/victory_br.html');
setURLs('/products/vwf/athena/victorycell/victoryCell_br.html','/products/vwf/athena/victorycell/victoryCell_br.html');
setURLs('/products/vwf/athena/ss4/ss4_br.html','/products/vwf/athena/ss4/ss4_br.html');
setURLs('/products/vwf/athena/mcimplant/mcimplant_br.html','/products/vwf/athena/mcimplant/mcimplant_br.html');
setURLs('/products/vwf/athena/elite/elite_br.html','/products/vwf/athena/elite/elite_br.html');
setURLs('/products/vwf/athena/mcdeposit/mcdeposit_br.html','/products/vwf/athena/mcdeposit/mcdeposit_br.html');
setURLs('/products/vwf/athena/optolith/optolith_br.html','/products/vwf/athena/optolith/optolith_br.html');
setURLs('/products/vwf/athena/athena1D/athena1D_br.html','/products/vwf/athena/athena1D/athena1D_br.html');
setURLs('/products/vwf/athena/ss3/ss3_br.html','/products/vwf/athena/ss3/ss3_br.html');
setURLs('/products/device_simulation/atlas.html','/products/device_simulation/atlas.html');
setURLs('/products/vwf/atlas/victory/victory_br.html','/products/vwf/atlas/victory/victory_br.html');
setURLs('/products/vwf/atlas/device3d/device3d_br.html','/products/vwf/atlas/device3d/device3d_br.html');
setURLs('/products/vwf/atlas/3D/giga3D/giga3D_br.html','/products/vwf/atlas/3D/giga3D/giga3D_br.html');
setURLs('/products/vwf/atlas/3D/luminous3D/luminous3D_br.html','/products/vwf/atlas/3D/luminous3D/luminous3D_br.html');
setURLs('/products/vwf/atlas/3D/quantum3D/quantum3D_br.html','/products/vwf/atlas/3D/quantum3D/quantum3D_br.html');
setURLs('/products/vwf/atlas/3D/tft3D/tft3D_br.html','/products/vwf/atlas/3D/tft3D/tft3D_br.html');
setURLs('/products/vwf/atlas/3D/magnetic3D/magnetic3D_br.html','/products/vwf/atlas/3D/magnetic3D/magnetic3D_br.html');
setURLs('/products/vwf/atlas/thermal3d/thermal3d.html','/products/vwf/atlas/thermal3d/thermal3d.html');
setURLs('/products/vwf/atlas/3D/mixedmode3D/mixedmode3d_br.html','/products/vwf/atlas/3D/mixedmode3D/mixedmode3d_br.html');
setURLs('/products/vwf/atlas/spisces/spisces_br.html','/products/vwf/atlas/spisces/spisces_br.html');
setURLs('/products/vwf/atlas/blaze/blaze_br.html','/products/vwf/atlas/blaze/blaze_br.html');
setURLs('/products/vwf/atlas/2D/mc_device/mc_device_br.html','/products/vwf/atlas/2D/mc_device/mc_device_br.html');
setURLs('/products/vwf/atlas/giga/giga_br.html','/products/vwf/atlas/giga/giga_br.html');
setURLs('/products/vwf/atlas/mmode/mmode_br.html','/products/vwf/atlas/mmode/mmode_br.html');
setURLs('/products/vwf/atlas/2D/quantum2D/quantum2D_br.html','/products/vwf/atlas/2D/quantum2D/quantum2D_br.html');
setURLs('/products/vwf/atlas/ferro/ferro_br.html','/products/vwf/atlas/ferro/ferro_br.html');
setURLs('/products/vwf/atlas/2D/magnetic2D/magnetic2D_br.html','/products/vwf/atlas/2D/magnetic2D/magnetic2D_br.html');
setURLs('/products/vwf/atlas/2D/tft/tft_br.html','/products/vwf/atlas/2D/tft/tft_br.html');
setURLs('/products/vwf/atlas/2D/led/led_br.html','/products/vwf/atlas/2D/led/led_br.html');
setURLs('/products/vwf/atlas/luminous/luminous_br.html','/products/vwf/atlas/luminous/luminous_br.html');
setURLs('/products/vwf/atlas/laser/laser_br.html','/products/vwf/atlas/laser/laser_br.html');
setURLs('/products/vwf/atlas/vcsels/vcsels.html','/products/vwf/atlas/vcsels/vcsels.html');
setURLs('/products/vwf/atlas/organicdisplay/organicdisplay_br.html','/products/vwf/atlas/organicdisplay/organicdisplay_br.html');
setURLs('/products/vwf/atlas/organicsolar/organicsolar_br.html','/products/vwf/atlas/organicsolar/organicsolar_br.html');
setURLs('/products/vwf/atlas/noise/noise.html','/products/vwf/atlas/noise/noise.html');
setURLs('/products/vwf/atlas/mercury/mercury_br.html','/products/vwf/atlas/mercury/mercury_br.html');
setURLs('/products/vwf/athena/victorystress/victoryStress_br.html','/products/vwf/athena/victorystress/victoryStress_br.html');
setURLs('/products/interactive_tools/interactive.html','/products/interactive_tools/interactive.html');
setURLs('/products/interactive_tools/deckbuild/deckbuild_br.html','/products/interactive_tools/deckbuild/deckbuild_br.html');
setURLs('/products/interactive_tools/maskviews/maskviews_br.html','/products/interactive_tools/maskviews/maskviews_br.html');
setURLs('/products/interactive_tools/devedit/devedit_br.html','/products/interactive_tools/devedit/devedit_br.html');
setURLs('/products/interactive_tools/tonyplot/tonyplot_br.html','/products/interactive_tools/tonyplot/tonyplot_br.html');
setURLs('/products/interactive_tools/tonyplot3d/tonyplot3D_br.html','/products/interactive_tools/tonyplot3d/tonyplot3D_br.html');
setURLs('/products/virtual_wafer/vwf.html','/products/virtual_wafer/vwf.html');
setURLs('/products/integrity/integrity.html','/products/integrity/integrity.html');
setURLs('/products/design_capture/gateway.html','/products/design_capture/gateway.html');
setURLs('/products/design_capture/gateway200/gateway200.html','/products/design_capture/gateway200/gateway200.html');
setURLs('/products/circuit_simulation/smartspice.html','/products/circuit_simulation/smartspice.html');
setURLs('/products/circuit_simulation/modellibModels.html','/products/circuit_simulation/modellibModels.html');
setURLs('/products/behavioral_modeling/verilog_A.html','/products/behavioral_modeling/verilog_A.html');
setURLs('/products/soiModels/ibis_support.html','/products/soiModels/ibis_support.html');
setURLs('/products/ICDesignTools/highvoltage.html','/products/ICDesignTools/highvoltage.html');
setURLs('/products/circuit_simulation/smartspice200/smartspice200.html','/products/circuit_simulation/smartspice200/smartspice200.html');
setURLs('/products/circuit_simulation/circuitsim.html','/products/circuit_simulation/circuitsim.html');
setURLs('/products/RFsimulation/smartSpiceRF.html','/products/RFsimulation/smartSpiceRF.html');
setURLs('/products/circuit_simulation/harmony.html','/products/circuit_simulation/harmony.html');
setURLs('/products/optimization/utmostiv.html','/products/optimization/utmostiv.html');
setURLs('/products/optimization/hisim/hisim_utmost4.html','/products/optimization/hisim/hisim_utmost4.html');
setURLs('/products/model_extraction/utmost.html','/products/model_extraction/utmost.html');
setURLs('/products/analog/vyper/noiseamp/noiseamp_mos/noiseam_mos_br.html','/products/analog/vyper/noiseamp/noiseamp_mos/noiseam_mos_br.html');
setURLs('/products/analog/vyper/noiseamp/noisamp_bipolar/noisebox.html','/products/analog/vyper/noiseamp/noisamp_bipolar/noisebox.html');
setURLs('/products/analog/vyper/noiseamp/mos/mos_noisebox.html','/products/analog/vyper/noiseamp/mos/mos_noisebox.html');
setURLs('/products/analog/vyper/spayn/spayn_br.html','/products/analog/vyper/spayn/spayn_br.html');
setURLs('/products/ICDesignVerification/celebrity.html','/products/ICDesignVerification/celebrity.html');
setURLs('/products/layout/expert.html','/products/layout/expert.html');
setURLs('/products/layout/expert200/expert200.html','/products/layout/expert200/expert200.html');
setURLs('/products/drc_lvs/guardian.html','/products/drc_lvs/guardian.html');
setURLs('/products/fullChipPE/hipex.html','/products/fullChipPE/hipex.html');
setURLs('/products/RLCNetlistReduction/clarity_rlc.html','/products/RLCNetlistReduction/clarity_rlc.html');
setURLs('/products/parasiticExtraction/discovery/discovery.html','/products/parasiticExtraction/discovery/discovery.html');
setURLs('/products/parasitics_features/parasitics_features.html','/products/parasitics_features/parasitics_features.html');
setURLs('/products/model_extraction/exact.html','/products/model_extraction/exact.html');
setURLs('/products/parasiticExtraction/quest/quest.html','/products/parasiticExtraction/quest/quest.html');
setURLs('/products/lpe/clever.html','/products/lpe/clever.html');
setURLs('/products/parasiticExtraction/stellar/stellar.html','/products/parasiticExtraction/stellar/stellar.html');
setURLs('/products/synergy/synergy.html','/products/synergy/synergy.html');
setURLs('/products/verilogSimulation/silos.html','/products/verilogSimulation/silos.html');
setURLs('/products/faultSimulation/hyperfault.html','/products/faultSimulation/hyperfault.html');
setURLs('/products/ip_characterization/accucell.html','/products/ip_characterization/accucell.html');
setURLs('/products/ip_characterization/accucore.html','/products/ip_characterization/accucore.html');
setURLs('/products/catalyst/catalyst.html','/products/catalyst/catalyst.html');
setURLs('/products/catalystDA/catalystDA.html','/products/catalystDA/catalystDA.html');
setURLs('/products/spider/spider.html','/products/spider/spider.html');
setURLs('/licensing/licensing.html','/licensing/licensing.html');
setURLs('/licensing/tcadUnlimited/tcadUnlimited.html','/licensing/tcadUnlimited/tcadUnlimited.html');
setURLs('/licensing/worldwide/worldwideLicense.html','/licensing/worldwide/worldwideLicense.html');
setURLs('/licensing/smartSpiceWorldwide/worldwideLicense.html','/licensing/smartSpiceWorldwide/worldwideLicense.html');
setURLs('/licensing/expertWorldwide/expert_worldwide_license_br.html','/licensing/expertWorldwide/expert_worldwide_license_br.html');
setURLs('/licensing/gatewayWorldwide/gateway_unlimited_br.html','/licensing/gatewayWorldwide/gateway_unlimited_br.html');
setURLs('/licensing/guardianWorldwide/guardian_drc_ww_license_br.html','/licensing/guardianWorldwide/guardian_drc_ww_license_br.html');
setURLs('/licensing/hipexWorldwide/hipex_unlimited_br.html','/licensing/hipexWorldwide/hipex_unlimited_br.html');
setURLs('/licensing/universal/universal_token.html','/licensing/universal/universal_token.html');
setURLs('/licensing/tokenCard/token_card_br.html','/licensing/tokenCard/token_card_br.html');
setURLs('/licensing/tcad_omni/tcad_omni.html','/licensing/tcad_omni/tcad_omni.html');
setURLs('/licensing/term/term-based.html','/licensing/term/term-based.html');
setURLs('/licensing/perpetual/perpetual.html','/licensing/perpetual/perpetual.html');
setURLs('/licensing/academic/eda_academic_suite.html','/licensing/academic/eda_academic_suite.html');
setURLs('/support/platforms.html','/support/platforms.html');
setURLs('/company/offices/offices.html','/company/offices/offices.html');
setURLs('/company/offices/california.html','/company/offices/california.html');
setURLs('/company/directions/directions.html','/company/directions/directions.html');
setURLs('/company/offices/arizona.html','/company/offices/arizona.html');
setURLs('/company/directions/ar-directions.html','/company/directions/ar-directions.html');
setURLs('/company/offices/texas.html','/company/offices/texas.html');
setURLs('/company/offices/texas.html','/company/directions/au-directions.html');
setURLs('/company/offices/massachusetts.html','/company/offices/massachusetts.html');
setURLs('/company/directions/ma-directions.html','/company/directions/ma-directions.html');
setURLs('/company/offices/japan.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/offices/uk.html','/company/offices/uk.html');
setURLs('/company/directions/uk_directions.html','/company/directions/uk_directions.html');
setURLs('/company/offices/korea.html','/company/offices/korea.html');
setURLs('/company/directions/korea_directions.html','/company/directions/korea_directions.html');
setURLs('/company/offices/taiwan.html','/company/offices/taiwan.html');
setURLs('/company/directions/taiwan_directions.html','/company/directions/taiwan_directions.html');
setURLs('/company/offices/singapore.html','/company/offices/singapore.html');
setURLs('/company/directions/singapore_directions.html','/company/directions/singapore_directions.html');
setURLs('/company/offices/distributorsChina01.html','/company/offices/distributorsChina01.html');
setURLs('/company/offices/distributorsChina02.html','/company/offices/distributorsChina02.html');
setURLs('/company/offices/distributorsChina03.html','/company/offices/distributorsChina03.html');
setURLs('/company/offices/distributorsIndia01.html','/company/offices/distributorsIndia01.html');
setURLs('/company/offices/distributorsIndia02.html','/company/offices/distributorsIndia02.html');
setURLs('/company/offices/distributorsMalasia01.html','/company/offices/distributorsMalasia01.html');
setURLs('/products/pdk/pdk.html','/products/pdk/pdk.html');
setURLs('/designflows/availablePDKs.html','/designflows/availablePDKs.html');
setURLs('/designflows/partners.html','/designflows/partners.html');
setURLs('/designflows/quality.html','/designflows/quality.html');
setURLs('/designflows/maintainability.html','/designflows/maintainability.html');
setURLs('/services/pdkServices/pdk_services.html','/services/pdkServices/pdk_services.html');
setURLs('/designflows/documentation.html','/designflows/documentation.html');
setURLs('/designflows/migration.html','/designflows/migration.html');
setURLs('/tech_lib_EDA/index.html','/tech_lib_EDA/index.html');
setURLs('/tech_lib_EDA/appNotes/AMS.html','/tech_lib_EDA/appNotes/AMS.html');
setURLs('/tech_lib_EDA/appNotes/customICCAD.html','/tech_lib_EDA/appNotes/customICCAD.html');
setURLs('/tech_lib_EDA/appNotes/parasiticExtraction.html','/tech_lib_EDA/appNotes/parasiticExtraction.html');
setURLs('/tech_lib_EDA/appNotes/digital.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/customICCAD.html','/tech_lib_EDA/publishedPapers/customICCAD.html');
setURLs('/tech_lib_EDA/publishedPapers/parasticExtraction.html','/tech_lib_EDA/publishedPapers/parasticExtraction.html');
setURLs('/tech_lib_EDA/kbase/AMS/index.html','/tech_lib_EDA/kbase/AMS/index.html');
setURLs('/tech_lib_EDA/kbase/AMS/analogCircuitSimulation.html','/tech_lib_EDA/kbase/AMS/analogCircuitSimulation.html');
setURLs('/tech_lib_EDA/kbase/AMS/RFCircuitSimulation.html','/tech_lib_EDA/kbase/AMS/RFCircuitSimulation.html');
setURLs('/tech_lib_EDA/kbase/AMS/mixedSignalCircuitSimulation.html','/tech_lib_EDA/kbase/AMS/mixedSignalCircuitSimulation.html');
setURLs('/tech_lib_EDA/kbase/AMS/spiceModelExtraction.html','/tech_lib_EDA/kbase/AMS/spiceModelExtraction.html');
setURLs('/tech_lib_EDA/kbase/customICCAD/index.html','/tech_lib_EDA/kbase/customICCAD/index.html');
setURLs('/tech_lib_EDA/kbase/customICCAD/layoutEditing.html','/tech_lib_EDA/kbase/customICCAD/layoutEditing.html');
setURLs('/tech_lib_EDA/kbase/customICCAD/layoutVerification.html','/tech_lib_EDA/kbase/customICCAD/layoutVerification.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/index.html','/tech_lib_EDA/kbase/parasiticExtraction/index.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/structureCharacterization.html','/tech_lib_EDA/kbase/parasiticExtraction/structureCharacterization.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/cellLevelExtraction.html','/tech_lib_EDA/kbase/parasiticExtraction/cellLevelExtraction.html');
setURLs('/tech_lib_EDA/kbase/parasiticExtraction/fullChipExtraction.html','/tech_lib_EDA/kbase/parasiticExtraction/fullChipExtraction.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/index.html','/tech_lib_EDA/kbase/logicVerification/index.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/logicFaultSimulation.html','/tech_lib_EDA/kbase/logicVerification/logicFaultSimulation.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/cellCoreChar.html','/tech_lib_EDA/kbase/logicVerification/cellCoreChar.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/placeAndRoute.html','/tech_lib_EDA/kbase/logicVerification/placeAndRoute.html');
setURLs('/tech_lib_EDA/PDKs/index.html','/tech_lib_EDA/PDKs/index.html');
setURLs('/tech_lib_EDA/trainingMaterials/AMS.html','/tech_lib_EDA/trainingMaterials/AMS.html');
setURLs('/tech_lib_EDA/trainingMaterials/parasiticExtraction.html','/tech_lib_EDA/trainingMaterials/parasiticExtraction.html');
setURLs('/tech_lib_EDA/trainingMaterials/digital.html','/tech_lib_EDA/trainingMaterials/digital.html');
setURLs('/tech_lib_EDA/kbase/AMS/recommendedTextbooks.html','/tech_lib_EDA/kbase/AMS/recommendedTextbooks.html');
setURLs('/tech_lib_EDA/kbase/logicVerification/recommendedTextbooks.html','/tech_lib_EDA/kbase/logicVerification/recommendedTextbooks.html');
setURLs('/tech_lib_TCAD/index.html','/tech_lib_TCAD/index.html');
setURLs('/tech_lib_TCAD/whitePapers/academicCourseMaterials/index.html','/tech_lib_TCAD/whitePapers/academicCourseMaterials/index.html');
setURLs('/tech_lib_TCAD/whitePapers/recommendedTextbooks.html','/tech_lib_TCAD/whitePapers/recommendedTextbooks.html');
setURLs('/tech_lib_TCAD/patents/index.html','/tech_lib_TCAD/patents/index.html');
setURLs('/tech_lib_TCAD/books.html','/tech_lib_TCAD/books.html');
setURLs('/tech_lib_TCAD/publishedPapers/allCategories.html','/tech_lib_TCAD/publishedPapers/allCategories.html');
setURLs('/tech_lib_TCAD/publishedPapers/soi.html','/tech_lib_TCAD/publishedPapers/soi.html');
setURLs('/tech_lib_TCAD/publishedPapers/cmos.html','/tech_lib_TCAD/publishedPapers/cmos.html');
setURLs('/tech_lib_TCAD/publishedPapers/iiiv.html','/tech_lib_TCAD/publishedPapers/iiiv.html');
setURLs('/tech_lib_TCAD/publishedPapers/interconnect.html','/tech_lib_TCAD/publishedPapers/interconnect.html');
setURLs('/tech_lib_TCAD/publishedPapers/tft.html','/tech_lib_TCAD/publishedPapers/tft.html');
setURLs('/tech_lib_TCAD/publishedPapers/organic.html','/tech_lib_TCAD/publishedPapers/organic.html');
setURLs('/tech_lib_TCAD/publishedPapers/sbt.html','/tech_lib_TCAD/publishedPapers/sbt.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/compound.html','/tech_lib_TCAD/publishedPapers/compound.html');
setURLs('/tech_lib_TCAD/publishedPapers/silicon.html','/tech_lib_TCAD/publishedPapers/silicon.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/thyristor.html','/tech_lib_TCAD/publishedPapers/thyristor.html');
setURLs('/tech_lib_TCAD/publishedPapers/finfet.html','/tech_lib_TCAD/publishedPapers/finfet.html');
setURLs('/tech_lib_TCAD/publishedPapers/tcad.html','/tech_lib_TCAD/publishedPapers/tcad.html');
setURLs('/tech_lib_TCAD/publishedPapers/detectors.html','/tech_lib_TCAD/publishedPapers/detectors.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('/tech_lib_TCAD/publishedPapers/siliconNanoWire.html','/tech_lib_TCAD/publishedPapers/siliconNanoWire.html');
setURLs('/examples/tcad/index.html','/examples/tcad/index.html');
setURLs('/examples/accucell/examples.html','/examples/accucell/examples.html');
setURLs('/tech_lib_TCAD/videos/corporate/index.html','/tech_lib_TCAD/videos/corporate/index.html');
setURLs('/tech_lib_TCAD/videos/index.html','/tech_lib_TCAD/videos/index.html');
setURLs('/services/index.html','/services/index.html');
setURLs('/services/tcadServices/tcad_services.html','/services/tcadServices/tcad_services.html');
setURLs('/services/modelingServices/modeling_services.html','/services/modelingServices/modeling_services.html');
setURLs('/services/parasiticExtractionServices/par_extrct.html','/services/parasiticExtractionServices/par_extrct.html');
setURLs('/services/pdkServices/pdk_services.html','/services/pdkServices/pdk_services.html');
setURLs('/services/cellcoreServices/cellcore_services.html','/services/cellcoreServices/cellcore_services.html');
setURLs('/company/university_program.html','/company/university_program.html');
setURLs('/company/profile/profile.html','/company/profile/profile.html');
setURLs('/news/news/index.html','/news/news/index.html');
setURLs('/news/pressreleases/2010.html','/news/pressreleases/2010.html');
setURLs('/news/pressreleases/2009.html','/news/pressreleases/2009.html');
setURLs('/news/pressreleases/2008.html','/news/pressreleases/2008.html');
setURLs('/news/pressreleases/2007.html','/news/pressreleases/2007.html');
setURLs('/news/pressreleases/2006.html','/news/pressreleases/2006.html');
setURLs('/news/pressreleases/2005.html','/news/pressreleases/2005.html');
setURLs('/news/pressreleases/2004.html','/news/pressreleases/2004.html');
setURLs('/news/pressreleases/2003.html','/news/pressreleases/2003.html');
setURLs('/news/pressreleases/2002.html','/news/pressreleases/2002.html');
setURLs('/news/pressreleases/2001.html','/news/pressreleases/2001.html');
setURLs('/news/pressreleases/2000.html','/news/pressreleases/2000.html');
setURLs('/news/pressreleases/2000_02_07_01.html','/news/pressreleases/2000_02_07_01.html');
setURLs('/news/pressreleases/2000_03_17_01.html','/news/pressreleases/2000_03_17_01.html');
setURLs('/news/pressreleases/2000_11_10_01.html','/news/pressreleases/2000_11_10_01.html');
setURLs('/news/pressreleases/2000_11_27_01.html','/news/pressreleases/2000_11_27_01.html');
setURLs('/news/pressreleases/2000_11_29_01.html','/news/pressreleases/2000_11_29_01.html');
setURLs('/news/pressreleases/2000_12_01_01.html','/news/pressreleases/2000_12_01_01.html');
setURLs('/news/pressreleases/2001_01_29_02.html','/news/pressreleases/2001_01_29_02.html');
setURLs('/news/pressreleases/2001_02_05_01.html','/news/pressreleases/2001_02_05_01.html');
setURLs('/news/pressreleases/2001_02_28_01.html','/news/pressreleases/2001_02_28_01.html');
setURLs('/news/pressreleases/2001_04_04_01.html','/news/pressreleases/2001_04_04_01.html');
setURLs('/news/pressreleases/2001_04_25_01.html','/news/pressreleases/2001_04_25_01.html');
setURLs('/news/pressreleases/2001_05_03_01.html','/news/pressreleases/2001_05_03_01.html');
setURLs('/news/pressreleases/2001_05_04_01.html','/news/pressreleases/2001_05_04_01.html');
setURLs('/news/pressreleases/2001_05_27_01.html','/news/pressreleases/2001_05_27_01.html');
setURLs('/news/pressreleases/2001_07_18_02.html','/news/pressreleases/2001_07_18_02.html');
setURLs('/news/pressreleases/2001_10_10_01.html','/news/pressreleases/2001_10_10_01.html');
setURLs('/news/pressreleases/2001_11_30_01.html','/news/pressreleases/2001_11_30_01.html');
setURLs('/news/pressreleases/2002_01_22_01.html','/news/pressreleases/2002_01_22_01.html');
setURLs('/news/pressreleases/2002_02_06_01.html','/news/pressreleases/2002_02_06_01.html');
setURLs('/news/pressreleases/2002_03_01_01.html','/news/pressreleases/2002_03_01_01.html');
setURLs('/news/pressreleases/2002_04_03_01.html','/news/pressreleases/2002_04_03_01.html');
setURLs('/news/pressreleases/2002_05_30_01.html','/news/pressreleases/2002_05_30_01.html');
setURLs('/news/pressreleases/2002_06_06_01.html','/news/pressreleases/2002_06_06_01.html');
setURLs('/news/pressreleases/2002_06_06_02.html','/news/pressreleases/2002_06_06_02.html');
setURLs('/news/pressreleases/2002_10-09-01.html','/news/pressreleases/2002_10-09-01.html');
setURLs('/news/pressreleases/2002_10_17_01.html','/news/pressreleases/2002_10_17_01.html');
setURLs('/news/pressreleases/2002_10_23_01.html','/news/pressreleases/2002_10_23_01.html');
setURLs('/news/pressreleases/2002_10_31_01.html','/news/pressreleases/2002_10_31_01.html');
setURLs('/news/pressreleases/2002_11_20_01.html','/news/pressreleases/2002_11_20_01.html');
setURLs('/news/pressreleases/2003_02_05_01.html','/news/pressreleases/2003_02_05_01.html');
setURLs('/news/pressreleases/2003_02_14_01.html','/news/pressreleases/2003_02_14_01.html');
setURLs('/news/pressreleases/2003_03_14_01.html','/news/pressreleases/2003_03_14_01.html');
setURLs('/news/pressreleases/2003_05_14_01.html','/news/pressreleases/2003_05_14_01.html');
setURLs('/news/pressreleases/2003_05_30_01.html','/news/pressreleases/2003_05_30_01.html');
setURLs('/news/pressreleases/2003_05_30_02.html','/news/pressreleases/2003_05_30_02.html');
setURLs('/news/pressreleases/2003_07_09_01.html','/news/pressreleases/2003_07_09_01.html');
setURLs('/news/pressreleases/2003_08_22_01.html','/news/pressreleases/2003_08_22_01.html');
setURLs('/news/pressreleases/2003_08_26_01.html','/news/pressreleases/2003_08_26_01.html');
setURLs('/news/pressreleases/2003_09_23_01.html','/news/pressreleases/2003_09_23_01.html');
setURLs('/news/pressreleases/2003_09_30_01.html','/news/pressreleases/2003_09_30_01.html');
setURLs('/news/pressreleases/2003_10_07_01.html','/news/pressreleases/2003_10_07_01.html');
setURLs('/news/pressreleases/2003_10_09_01.html','/news/pressreleases/2003_10_09_01.html');
setURLs('/news/pressreleases/2004_01_27_01.html','/news/pressreleases/2004_01_27_01.html');
setURLs('/news/pressreleases/2004_03_02_01.html','/news/pressreleases/2004_03_02_01.html');
setURLs('/news/pressreleases/2004_04_02_01.html','/news/pressreleases/2004_04_02_01.html');
setURLs('/news/pressreleases/2004_05_20_01.html','/news/pressreleases/2004_05_20_01.html');
setURLs('/news/pressreleases/2004_05_25_01.html','/news/pressreleases/2004_05_25_01.html');
setURLs('/news/pressreleases/2004_06_01_01.html','/news/pressreleases/2004_06_01_01.html');
setURLs('/news/pressreleases/2004_06_07_01.html','/news/pressreleases/2004_06_07_01.html');
setURLs('/news/pressreleases/2004_06_07_02.html','/news/pressreleases/2004_06_07_02.html');
setURLs('/news/pressreleases/2004_06_07_03.html','/news/pressreleases/2004_06_07_03.html');
setURLs('/news/pressreleases/2004_12_09_04.html','/news/pressreleases/2004_12_09_04.html');
setURLs('/news/pressreleases/2005_01_07_01.html','/news/pressreleases/2005_01_07_01.html');
setURLs('/news/pressreleases/2005_01_18_01.html','/news/pressreleases/2005_01_18_01.html');
setURLs('/news/pressreleases/2005_04_15_01.html','/news/pressreleases/2005_04_15_01.html');
setURLs('/news/pressreleases/2005_07_27_01.html','/news/pressreleases/2005_07_27_01.html');
setURLs('/news/pressreleases/2005_08_08_01.html','/news/pressreleases/2005_08_08_01.html');
setURLs('/news/pressreleases/2005_08_11_01.html','/news/pressreleases/2005_08_11_01.html');
setURLs('/news/pressreleases/2006_01_09_01.html','/news/pressreleases/2006_01_09_01.html');
setURLs('/news/pressreleases/2006_04_24_01.html','/news/pressreleases/2006_04_24_01.html');
setURLs('/news/pressreleases/2006_08_14_01.html','/news/pressreleases/2006_08_14_01.html');
setURLs('/news/pressreleases/2007_04_17_01.html','/news/pressreleases/2007_04_17_01.html');
setURLs('/news/pressreleases/2007_05_10_01.html','/news/pressreleases/2007_05_10_01.html');
setURLs('/news/pressreleases/2008_06_12_01.html','/news/pressreleases/2008_06_12_01.html');
setURLs('/news/pressreleases/2008_06_27_01.html','/news/pressreleases/2008_06_27_01.html');
setURLs('/news/pressreleases/2008_08_05_01.html','/news/pressreleases/2008_08_05_01.html');
setURLs('/news/pressreleases/2008_08_20_01.html','/news/pressreleases/2008_08_20_01.html');
setURLs('/news/pressreleases/2008_11_05_01.html','/news/pressreleases/2008_11_05_01.html');
setURLs('/news/pressreleases/2009_01_08_01.html','/news/pressreleases/2009_01_08_01.html');
setURLs('/news/pressreleases/2009_04_08_01.html','/news/pressreleases/2009_04_08_01.html');
setURLs('/news/pressreleases/2009_04_22_01.html','/news/pressreleases/2009_04_22_01.html');
setURLs('/news/pressreleases/2009_04_28_01.html','/news/pressreleases/2009_04_28_01.html');
setURLs('/news/pressreleases/2009_04_29_01.html','/news/pressreleases/2009_04_29_01.html');
setURLs('/news/pressreleases/2009_05_27_01.html','/news/pressreleases/2009_05_27_01.html');
setURLs('/news/pressreleases/2009_09_16_01.html','/news/pressreleases/2009_09_16_01.html');
setURLs('/news/pressreleases/2009_10_27_01.html','/news/pressreleases/2009_10_27_01.html');
setURLs('/news/pressreleases/2010_01_06_01.html','/news/pressreleases/2010_01_06_01.html');
setURLs('/news/pressreleases/2010_02_17_01.html','/news/pressreleases/2010_02_17_01.html');
setURLs('/news/pressreleases/index.html','/news/pressreleases/index.html');
setURLs('/news/pressreleases/2010_04_14_01.html','/news/pressreleases/2010_04_14_01.html');
setURLs('/company/management/message_us.html','/company/management/index.html');
setURLs('/company/partners/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/universityRegion/northAmerica.html','/company/universityRegion/northAmerica.html');
setURLs('/company/universityRegion/europe.html','/company/universityRegion/europe.html');
setURLs('/company/universityRegion/asia.html','/company/universityRegion/asia.html');
setURLs('/company/partners/EDAPartners.html','/company/partners/EDAPartners.html');
setURLs('/company/openings/openings.html','/company/openings/openings.html');
setURLs('/company/events/conferences.html','/company/events/conferences.html');
setURLs('/posters/index.html','/posters/index.html');
setURLs('/company/events/index.html','/company/events/index.html');
setURLs('/company/sevenReasons.html','/company/sevenReasons.html');
setURLs('/company/history.html','/company/history.html');
setURLs('/tech_lib_TCAD/videos/universalToken.html','/tech_lib_TCAD/videos/universalToken.html');
setURLs('/tech_lib_TCAD/videos/registration.html','/tech_lib_TCAD/videos/registration.html');
setURLs('/tech_lib_TCAD/videos/linuxInstall.html','/tech_lib_TCAD/videos/linuxInstall.html');
setURLs('/tech_lib_TCAD/videos/windowsInstall.html','/tech_lib_TCAD/videos/windowsInstall.html');
setURLs('/tech_lib_TCAD/videos/networkInstall.html','/tech_lib_TCAD/videos/networkInstall.html');
setURLs('/tech_lib_TCAD/videos/sflmInstall.html','/tech_lib_TCAD/videos/sflmInstall.html');
setURLs('/2014PurchaseHome/purchaseProducts.html','/2014PurchaseHome/purchaseProducts.html');
setURLs('/2014PurchaseHome/purchaseTokens.html','/2014PurchaseHome/purchaseTokens.html');
setURLs('/support/windows.html','/support/windows.html');
setURLs('/company/offices/distributorsChina04.html','/company/offices/distributorsChina04.html');
setURLs('/news/pressreleases/2010_05_26_01.html','/news/pressreleases/2010_05_26_01.html');
setURLs('/news/pressreleases/2010_06_23_01.html','/news/pressreleases/2010_06_23_01.html');
setURLs('/products/analog/spicemodels/spicemodels.html','/products/analog/spicemodels/spicemodels.html');
setURLs('/products/RLCNetlistReduction/clarity_rlc_Synopsys_StarRC_Cadence_QRC.html','/products/RLCNetlistReduction/clarity_rlc_Synopsys_StarRC_Cadence_QRC.html');
setURLs('/products/catalyst/catalyst_Cadence_SPECTRE_Synopsys_HSPICE.html','/products/catalyst/catalyst_Cadence_SPECTRE_Synopsys_HSPICE.html');
setURLs('/products/catalystDA/catalystDA_Mentor_Graphics_Calibre.html','/products/catalystDA/catalystDA_Mentor_Graphics_Calibre.html');
setURLs('/products/circuit_simulation/harmony_Cadence_Virtuoso.html','/products/circuit_simulation/harmony_Cadence_Virtuoso.html');
setURLs('/products/circuit_simulation/smartspice_HSPICE_ELDO.html','/products/circuit_simulation/smartspice_HSPICE_ELDO.html');
setURLs('/products/drc_lvs/guardian_Mentor_Graphics_CalibreLVS_Cadence_Assura.html','/products/drc_lvs/guardian_Mentor_Graphics_CalibreLVS_Cadence_Assura.html');