CN_Now = new Date();
CN_NowDay = new Date();
//localtime = CN_Now.toUTCString();
CN_Hours = CN_Now.getUTCHours();
CN_Day = CN_NowDay.getUTCDay();
CN_Minutes = CN_Now.getUTCMinutes();

//if past 5:00pm or before 9am call HRN (GMT + 4 hrs)
//daylight savings time add 1 hr.
//GMT 17 = EST 21 standard time
//GMT 17 = EST 20 daylight savings time
if ((CN_Hours) >= 21 && (CN_Minutes) >= 0 || (CN_Hours) <13) {
document.write("1-800-611-7471");}

//if saturday or sunday call HRN
else if (CN_Day == 6 || CN_Day == 0){
document.write("1-800-611-7471");}

//otherwise, call alt number
else {
document.write("1-800-611-7471");}