const periods = ['January 2019', 'February 2019', 'March 2019'], effDt = new Date('2019-02-28'); const urls = { 'CAROLINA LOGISTICS, Inc': { id: '70830516181943', period1: '#', period2: 'https://docs.google.com/spreadsheets/d/1O0sSWtoj8SByE1dyhsRy2Cg6WXYd2Q-7r9X4xGMsKbE/edit#gid=1165085359', period3: '#', }, 'DELTA EXPRESS, Inc': { id: '70830515177576', period1: 'https://docs.google.com/spreadsheets/d/1m20SlaOddjd449cbF6SpdC7k5x-ZCB4WZ6U_loi6pMo/edit#gid=1165085359', period2: 'https://docs.google.com/spreadsheets/d/1UN5CDshgEaziW9VFLIs1jErC7kvj1TcVZNfNo1rB-MA/edit#gid=1165085359', period3: '#', }, 'DELTA LOGISTICS, Inc': { id: '70830517302592', period1: '#', period2: 'https://docs.google.com/spreadsheets/d/1cbdhGctbi_0Rd3dTnM4WFEZ14QkmEmbxp_nyyRJTiKM/edit#gid=1165085359', period3: '#', }, 'ONTRACK TRANSPORTATION, Inc': { id: '70830517305886', period1: '#', period2: 'https://docs.google.com/spreadsheets/d/1FVNvCDFYcUkzCCbTDtfddl6-JNT3nlrS1GWykXJv9tE/edit#gid=1165085359', period3: '#', }, 'PRECISE TRANSPORTATION, Inc': { id: '70830517302433', period1: '#', period2: 'https://docs.google.com/spreadsheets/d/1yt13FktUUqzpgJHyqdnEeUJuaqu0-7oTu8HqamJ_jaA/edit#gid=1165085359', period3: '#', }, 'RAINIER TRANSPORTATION, Inc': { id: '70830517307425', period1: '-', period2: '-', period3: '-', }, }; const pad = 'style="padding: 14px 24px;"'; let table = 'Company NamePeriod 1Period 2Period 3', keys = Object.keys(urls); for (let i = 0; i < keys.length; i++) { let link1 = urls[keys[i]].period1, link2 = urls[keys[i]].period2, link3 = urls[keys[i]].period3, anchor1 = (link1 != '-') ? '' : '', anchor2 = (link2 != '-') ? '' : '', anchor3 = (link3 != '-') ? '' : '', anchName1 = (link1 == '-') ? '' : (link1 != '#') ? periods[0] + '' : '' + periods[0], anchName2 = (link2 == '-') ? '' : (link2 != '#' && effDt <= new Date()) ? periods[1] + '' : '' + periods[1], anchName3 = (link3 == '-') ? '' : (link3 != '#' && effDt <= new Date()) ? periods[2] + '' : '' + periods[2]; table += '' + keys[i] + '  ' + urls[keys[i]].id + ''; table += '' + anchor1 + anchName1 + '' + anchor2 + anchName2 + '' + anchor3 + anchName3 + ''; } document.getElementById('omcMon').innerHTML = table;