﻿// JScript File
// Short Hand function to write the company name, sCompanyName var must exist
function CN(){
    if (typeof sCompanyName != "undefined") document.write(sCompanyName);
    }
// Short Hand function to write the toll free number, sTollFree var must exist
function TFN(){
    if (typeof sTollFree != "undefined") document.write(sTollFree);
    }
