﻿// JScript File
function Content1004Start()
{   
    var Continent =Centix.Pages.KWXMaster.GetContinent().value;
    SwapIn(0);
    if (Continent == '2' ) { SwapIn(0);}
    if (Continent == '1' ) { SwapIn(1);}
    if (Continent == '3' ) { SwapIn(2);}
    if (Continent == '4' ) { SwapIn(3);}
    if (Continent == '5' ) { SwapIn(4);}
    if (Continent == '6' ) { SwapIn(5);}  
    //Set Active Country       
    SetCountryList(document.getElementById('CountrySelect'), Continent);
    var c = Centix.Pages.KWXMaster.GetCountry().value;
    SelectDropDownValue(document.getElementById('CountrySelect'),c);
    //Set Active Language
    SetLanguageList(document.getElementById('Language'));
    var l = Centix.Pages.KWXMaster.GetLanguage().value;
    SelectDropDownValue(document.getElementById('Language'),l)
}