﻿// JScript File
function doBridgeTrack(btId)
{
    // do BT only for the live sapient.com site
    if(document.location.href.toLowerCase().indexOf('sapient.com') != -1)
    {
        var szProtocol = window.location.protocol;  // script on page load
        var szRandom = Math.random() * 1000000;
        var i = document.createElement('img');
		i.src = szProtocol + '//ads.bridgetrack.com/track/?id=' + btId + '&r=' + szRandom;
    }
}

function postJobOppCityFiler(city, country, btId){
    
    if(btId.length > 0)
    {
      doBridgeTrack(btId); 
    }
    
    document.forms[0].action = 'http://sapient.recruitmax.com/MAIN/careerportal/Job_List.cfm?szSearchType=Advanced';
    document.forms[0].__VIEWSTATE.name = 'NOVIEWSTATE';
    document.getElementById('cboCity').value = city;
    document.getElementById('cboCountry').value = country;
    document.forms[0].submit();
}

