// * same logic as getBottomTxt in netweb1.js - keep in sync
var companyContactInformation = ''
// * Cambridge specific
if(usingCambridge == 'True'){
companyContactInformation = getFooterLogo('ctc.png', 162, 120)
companyContactInformation += '
'
companyContactInformation += 'Cambridge Telephone Company'
companyContactInformation += '
'
companyContactInformation += 'Phone: (208) 257-3314'
companyContactInformation += '
'
companyContactInformation += 'Fax: (208) 257-3310'
companyContactInformation += '
'
companyContactInformation += 'PO Box 88 Cambridge, ID 83610'
if(Company == '2'){
companyContactInformation = getFooterLogo('ctc.png', 200, 100)
companyContactInformation += '
'
companyContactInformation += 'CTC Wireless'
companyContactInformation += '
'
companyContactInformation += 'Cambridge: (208) 257-3314
'
companyContactInformation += 'Fax: (208) 257-3310
'
companyContactInformation += 'PO Box 88 Cambridge, ID 83610'
}
if(Company == '3'){
companyContactInformation = getFooterLogo('ctc.png', 200, 100)
companyContactInformation += '
'
companyContactInformation += 'CTC Telecom'
companyContactInformation += '
'
companyContactInformation += '(208) 229-1000
'
companyContactInformation += 'PO Box 88 Cambridge, ID 83610'
}
if(Company == '4'){
companyContactInformation = getFooterLogo('CTCbusiness.png',132, 120)
companyContactInformation += '
'
companyContactInformation += 'CTC Business'
companyContactInformation += '
'
companyContactInformation += '(208) 229-9000
'
companyContactInformation += 'PO Box 69 Cambridge Idaho 83610'
}
if(Company == '5' || Company == '6') {
companyContactInformation = getFooterLogo('WW-CTC_Green.png', 200, 100)
companyContactInformation += '
'
companyContactInformation += 'Wilderness Wireless Powered by CTC'
companyContactInformation += '
'
companyContactInformation += '(208) 685-2723
'
companyContactInformation += '(541) 413-3100
'
companyContactInformation += 'PO Box 69 Cambridge Idaho 83610'
}
}
else {
companyContactInformation = getFooterLogo('ctc.png', 162, 120)
companyContactInformation += '
'
companyContactInformation += 'Cambridge Telephone Company'
companyContactInformation += '
'
companyContactInformation += 'Phone: (208) 257-3314'
companyContactInformation += '
'
companyContactInformation += 'Fax: (208) 257-3310'
companyContactInformation += '
'
companyContactInformation += 'PO Box 88 Cambridge, ID 83610'
}
function getFooterLogo(imgFileName, myWidth, myHeight) {
var retVal = "";
if (window.location.href.indexOf('/secure/') != -1) {
retVal = ""
} else {
retVal = ""
}
return retVal;
}