﻿function ValidateCompanyAct(source, arguments)
{
    var theForm = document.forms['aspnetForm'];
    var ddlValue = theForm.ctl00_MainContent_ddlCompanyAct.value;
    var bolIsValid = false;
    
    if ( (ddlValue.length == 0) && (arguments.Value.length == 0) )
        bolIsValid = false;
    else
        bolIsValid = true;
         
    arguments.IsValid= bolIsValid;
}

function ValidateCountry(source, arguments)
{
    var theForm = document.forms['aspnetForm'];
    var ddlValue = theForm.ctl00_MainContent_countryList_Country.value;

    arguments.IsValid= (ddlValue.length != 0);
}

//-------------- Change Map in the contact us page --------------
function ChangeMap(iMap)
{
    var theForm = document.forms['aspnetForm'];
    
    var localLink = document.getElementById('ctl00_MainContent_LocalMapTab'); 
    var nationalLink = document.getElementById('ctl00_MainContent_RegionalMapTab'); 
    var enlargeLink = document.getElementById('ctl00_MainContent_EnlargeMap'); 
    
    if(iMap == 1)
    {   
          document['mapImage'].src = 'images/contact/localSmall.gif'
          localLink.className = 'selTab';
          nationalLink.className = 'deSelTab';
          enlargeLink.href = 'images/contact/local.jpg';
          
    }
    else
    {
        document['mapImage'].src = 'images/contact/regionalSmall.gif'; 
        localLink.className = 'deSelTab';
        nationalLink.className = 'selTab'; 
        enlargeLink.href = 'images/contact/regional.jpg';
    }
}